Replace empty cell in the data table

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

Hi, @randa_prakasa

It can be help to you.

Hi @randa_prakasa

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

1 Like

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