How to check if a row in column A has value in column B

Hi All,

How to check if a row in column A has value in column B

image

the result should be boolean

Hi @Suastrian_Dika

just loop and validate both columns

String.IsNullOrEmpty(CurrentRow("B").ToString) AndAlso String.IsNullOrEmpty(CurrentRow("A").ToString)

Regards

Thanks @fernando_zuluaga

1 Like

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