Empty cell skip

Hello ,I have to put all items in queue which is in Excel i have empty cell that should to skipped…
error in excel row1

Hi @sathya_auto

String.IsNullOrEmpty(CurrentRow(“EmailAddress”).ToString)

Thankyou will try it…suppose if the empty cell contains all rows

@sathya_auto

EmailAddress contains contains empty so it will skip that row

@sathya_auto

Try the below sequence

String.IsNullOrEmpty(CurrentRow("EmailAddress").ToString)

Regards

if some cases empty cell contains all rows like first name,second name means ?

@sathya_auto

String.IsNullOrEmpty(CurrentRow(“EmailAddress”).ToString) or String.IsNullOrEmpty(CurrentRow(“FirstName”).ToString) or String.IsNullOrEmpty(CurrentRow(“LastName”).ToString)

thankyou Got it… :slightly_smiling_face: :slightly_smiling_face:

1 Like

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