i have data table where some of the cells are empty. I want to write into text box using “Type into” activity for all rows. But i want replace empty cell with [k(tab)] (tab button), please sharing the solution.
Thank You
i have data table where some of the cells are empty. I want to write into text box using “Type into” activity for all rows. But i want replace empty cell with [k(tab)] (tab button), please sharing the solution.
Thank You
You can try to use these expression in Type Into activity. Let me know if it works.
if(String.IsNullOrEmpty(CurrentRow("Age").ToString),"[k(tab)]",CurrentRow("Age").ToString)
if(String.IsNullOrEmpty(CurrentRow("Address").ToString),"[k(tab)]",CurrentRow("Address").ToString)
thank you so much for the solution
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.