Greetings

I was wondering if there was a way to create an IF argument using the {DOCPROPERTY Company}.

For this to fully work as intended, I need to know if {Company} is "Campaign Name" when true, display no text (""), if false, display "playing in {Company}" property.

Thinking this would be rather easy, I created the following text examples to text my understanding of calling the property and testing if its true or false. I replaced what I actually need (above) with testing information (below).

{ IF {DOCPROPERTY.Company} = "Campaign Name" "True" "False" \* MERGEFORMAT \* MERGEFORMAT }
{ IF {DOCPROPERTY Company} = "Campaign Name" "True" "False" \* MERGEFORMAT \* MERGEFORMAT }

Both of these return "Company}". Which is stating I don't have the right name.

{ IF {Company} = "Campaign Name" "True" "False" \* MERGEFORMAT \* MERGEFORMAT }

Displays "False" Can anyone help with showing where I need to fix this problem?