Hi Everyone,
How do i achieve the below:-
So the input string contains or may not contain 'RESCAN' and 'RESCAN-SAMPLE'. I should identify only 'RESCAN'. These values can be anywhere in the input string
Solved! Go to Solution.
Hi,
I Have the more sample data and a more clear description
You can use formula like below should work.
If Contains([field],"RESCAN-SAMPLE") then 0 else 1 endif
Aplogies! I should have been more precise.
The string may or may not contain 'RESCAN' and 'RESCAN-SAMPLE'. I need to find the strings where only 'RESCAN' value is present
Hi, I do want 'RESCAN-SAMPLES' to come as TRUE
Below formula should work. I am checking for 'RESCAN-SAMPLE' if its there 0 else if 'RESCAN' is there 1 else 'RESCAN' is not at all there then 0.
If Contains([Field1],"RESCAN-SAMPLE")
THEN 0
ELSEIF Contains([Field1],"RESCAN") THEN 1
ELSE 0 ENDIF
Workflow:
Hope this helps 🙂