IMPORTANT ANNOUNCEMENT

These forums were permanently set to read-only mode on July 20, 2022. From that day onwards, no new posting or comment is allowed on the site, but the historical content remains intact and searchable.

A new location for posting questions about PlanetPress Suite is now available:

OL Learn - PlanetPress Classic (opens in new tab)

Topic Options
#24645 - 08/20/09 03:30 PM putting Variable Data within an "IF" statement
A Plus Letter Offline
OL Newbie

Registered: 04/10/08
Posts: 15
Loc: USA
How can I put Variable Data within an "IF" statement?
F([Backc3] = "CDDA", "Bring this postcard to [Brmanag] at the [Brname] Branch, and she

Top
#24646 - 08/20/09 04:04 PM Re: putting Variable Data within an "IF" statement
Anonymous
Unregistered


A web support call has been opened for this issue (#78463) I am currently looking into it and I will contact you later in the afternoon or tommorow morning.

Thank you : )

Top
#24647 - 08/21/09 08:55 AM Re: putting Variable Data within an "IF" statement
A Plus Letter Offline
OL Newbie

Registered: 04/10/08
Posts: 15
Loc: USA
Good morning Matt,

I figured out my 1 problem and here is the answer but I still need to know about the superscripting within an "IF" statement.

IF([Backc3] = "CDDA", IF([Brname] = "Absecon", "Bring this postcard to Debbie at the Absecon Branch, and she

Top
#24648 - 08/21/09 09:15 AM Re: putting Variable Data within an "IF" statement
Raphael Lalonde Lefebvre Offline
OL Expert

Registered: 10/14/05
Posts: 4956
Loc: Objectif Lune Montreal
A Plus Letter,

This expression is very big, and difficult to work with. To me, it seems like concatenating variable data fields would have been a much easier way. Taking the expression in your first post, here's what you could do:

Code:
IF([Backc3] = "CDDA", "Bring this postcard to " & [Brmanag] & " at the " & [Brname] & " Branch, and she

Top