I am still working on this project (
This is the row {Table1.Field4} I was trying to parse earlier and separate each field (Thanks to lbass I was able to get it)
Formula Field: @PIX_Code
Now I am trying to make a conditional statement for each PIX code, however when I do:
Every record shows the Table1.Field4 & " <-- This has not been added to stmt"
i.e. even on the records that are PIX-3-71003 it still goes to Else
-----
At first I thought the percent was acting as a boolean and messing it up but after doing the Right (12) of the Left (13) it still did it.
I am confused.
Thanks
This is the row {Table1.Field4} I was trying to parse earlier and separate each field (Thanks to lbass I was able to get it)
Formula Field: @PIX_Code
Code:
Right(Left({Table1.Field4},13),12)
Now I am trying to make a conditional statement for each PIX code, however when I do:
Code:
IF {@PIX_Code} = "PIX-3-71003" Then
"It worked..."
Else {@PIX_Code} & " <-- This has not been added to stmt"
Every record shows the Table1.Field4 & " <-- This has not been added to stmt"
i.e. even on the records that are PIX-3-71003 it still goes to Else
-----
At first I thought the percent was acting as a boolean and messing it up but after doing the Right (12) of the Left (13) it still did it.
I am confused.
Thanks