How to insert bulk data into excel without using excel application scope?

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?

@jenipriya.chitravel

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

@jenipriya.chitravel

ideally this works without excel as well

but you need the db providers

Also please share issue with workbook activities

cheers

Hi Anil,

I tried but got this error

@jenipriya.chitravel

as per error you need admin priviliges reach out to your it

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