I have a Data Table that is 1 column and X rows. I’d like to loop through the data table and use each cell (e.g. A1, A2…An) as a the value for a Type Into.
- Do I use a For Each Row?
- For Type Into, what do I use as the “value”?
Thank you
I have a Data Table that is 1 column and X rows. I’d like to loop through the data table and use each cell (e.g. A1, A2…An) as a the value for a Type Into.
Thank you
To clarify, I don’t want to write into an excel sheet. The Type Into will be used in a web app, so I want to type the cell value into the web app, do a few other processes, and then move to the next cell value and type into the web app.
Hi @mnease,
Yes
1.you can use the for each row
2. Inside the loop you can assign the Type Into to the value “row(0).ToString”
Regards
Balamurugan
Thanks, that worked. Simple solution!