I haven't been able to find any information on this at all:
For some reason, when I use wildcards in an if statement for a fieldcode, only some of them work. Lets say I'm trying to find anything with F0 in it.
Ex:
*F0 - works
F0* - works
*F0* - Doesn't work!
Anyone know the reason? Actual if statement is posted below:
I switched the location of the *F0* statement with *F0, and it still didn't work, so I'm thinking it has to be a wildcard issue.
For some reason, when I use wildcards in an if statement for a fieldcode, only some of them work. Lets say I'm trying to find anything with F0 in it.
Ex:
*F0 - works
F0* - works
*F0* - Doesn't work!
Anyone know the reason? Actual if statement is posted below:
Code:
{IF{MERGEFIELD CODE}="F0" "yes" "{IF{MERGEFIELD CODE}="F0*" "yes" "{IF{MERGEFIELD CODE}="*F0*" "yes" "{IF{MERGEFIELD CODE}="*F0" "yes" "no"}"}"}"}
I switched the location of the *F0* statement with *F0, and it still didn't work, so I'm thinking it has to be a wildcard issue.