How to read the excel data in table format and write into the web application

Hello @Sandeep_Varma_Rudraraju

If you are trying to read the data from excel, you can use the “read range activity”.
The if you want to add the data row by row, you can use a “for each row in datatable” activity.
Else if you want to add all the excel content in a single step, you can use Output datatable activity to convert to string and then use Type Activity.

Thanks