Hello ,I have to put all items in queue which is in Excel i have empty cell that should to skipped…
Hi @sathya_auto
String.IsNullOrEmpty(CurrentRow(“EmailAddress”).ToString)
Thankyou will try it…suppose if the empty cell contains all rows
EmailAddress contains contains empty so it will skip that row
Try the below sequence
String.IsNullOrEmpty(CurrentRow("EmailAddress").ToString)
Regards
if some cases empty cell contains all rows like first name,second name means ?
String.IsNullOrEmpty(CurrentRow(“EmailAddress”).ToString) or String.IsNullOrEmpty(CurrentRow(“FirstName”).ToString) or String.IsNullOrEmpty(CurrentRow(“LastName”).ToString)
thankyou Got it…
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.