How can I add multiple columns in an if 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

Hi @Silviu_Albisoru

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

1 Like

Thanks a lot!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.