Hi All,
I am trying to achieve the following in the filter node but it is not working,...can you please help....
if [Country] ="India" then [Flag]="Yes" else [Flag]="No" Endif
The node runs but the output is yes for all the countries....can you please help..
Thanks,
Arun
Solved! Go to Solution.
Hi @arunchandra
Please try:
If [Country] ="India" then "Yes" else "No" EndIf
I assume that [Flag] is being assigned by the result of this... therefore you do not need "[Flag]=" inside of it.
Thanks John!