How to read the data from Excel into a data
table in UiPath
You can use read range activity for this
1 Like
Hi! Welcome to community!
Use Read rage activity in the properties panel check the add headers and in the output panel create a variable by pressing CTRL+K. Now provide the name as dt_Input
That’s it.
Reference:
Regards,
NaNi
2 Likes
Welcome to uipath community
- Use Read Range activity → Store it as DtRead
- Use For each Row in Data Table activity
Here → CurrentRow("your Column Name").ToString
it will get the column data one by one inside the loop
Regards
Gokul
2 Likes
Than you so much
1 Like