This is my current if condition, CurrentRow(“Key”).ToString.Contains(“PASS”) And CurrentRow(“Value”).ToString.Contains(“0”)
I want to include or Num beside the “PASS” and i want it either contains Pass or num and value must be 0
Hi,
How about the following expression?
(CurrentRow("Key").ToString.Contains("PASS") OrElse CurrentRow("Key").ToString.Contains("num"))AndAlso CurrentRow("Value").ToString.Contains(“0”)
Regards,
Hi @superpunchypp ,
You can add in If
if have many condition
you can add if inside if
attention AND , OR
regards,
can only be and or OR but not both
We can merge and group condition
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.