I don’t have Excel in my system. So i can’t use excel application scope in my workflow. I used write range workbook but that doesn’t work for bulk data. Can anyone suggest any other option to insert bulk data into excel?
try using excel as DB
Also using workbook activity as well we cna update the data…please tell the error you are egtting
cheers
I don’t have excel application in my system that is the main concern. so i can’t able to open excel
ideally this works without excel as well
but you need the db providers
Also please share issue with workbook activities
cheers
Hello @jenipriya.chitravel
You can insert data via Workbook Activities.
Without knowing your exact case you could read an existing file into a Datatable with Read Range Workbook.
Then you can inject a new row (for each of the data you need to insert) by creating and populating a DataRow variable.
Assign dtr_NewRow = dt_ExcelFile.NewRow()
Assign dtr_NewRow("Column Name 1") = "data to insert"
Assign dtr_NewRow("Column Name 2") = "other data to insert"
Etc...
Regards
Soren
