Hi all. I need your help, if possible.
I have the following condition in an if activity:
CurrentRow (“columnname”). Equals (“-”)
How can I add more columns in the above condition
Hi all. I need your help, if possible.
I have the following condition in an if activity:
CurrentRow (“columnname”). Equals (“-”)
How can I add more columns in the above condition
You can use or | and for specifying multiple columns depending upon ur requirement
like CurrentRow (“columnname1”). Equals (“-”) or CurrentRow (“columnname2”). Equals (“-”)
or
CurrentRow (“columnname1”). Equals (“-”) and CurrentRow (“columnname2”). Equals (“-”)
Thanks & Regards,
Nived N
Thanks a lot!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.