Question
4
Replies
29
Views
Posted: January 19, 2019
Last activity: January 21, 2019
Closed
Solved
populate textboxes from excel
I have a requirement where I need to populate the excel row values to their respective textboxes. I am getting the values from getitem into message box. But how can I populate the values from row to their respective textboxes? Please help me with the solution.
Thanks & Regards,
Anu
You can export excel data to datatable using exportdata and then loop the datatable rows and read required row values or you can use excel getcellvalue method for each cell.
for ex: if you want read first row values then pass A1, B1, C1 to getcellvalue method based on no of cells.