Data Table Select

Team,

I am new to Uipath need to solve the below problem.

  1. In a datatable i got 3 rows (EmpName, Address, Age)
  2. In one of the row Age is missing
  3. I want the output to be
    xxx(EmpName) Age is missing.
    It should get the Name of the employee along with the respective ‘column name’ which are missing. Any sample coding would help to my better understanding. Thanks in advance.

Regards,
Bala

@Robotics

  1. Iterate the datatable using for each row activity.
  2. Check with if condition String.IsNullOrEmpty(row(“Age”).ToString).
  3. If yes, then put a message box, row(“EmpName”).ToString + " 's Age is missing "
1 Like