Hey @Anand_Designer
You can do that by using Directory.GetFiles(yourFilePath)
That will create an array of all the files in the directory, then you use a for each and extract the name of the pdf and create a new excel with that name.
@ziga.hanzic i tried your work flow ,i did not get proper data in excel file.
i am getting all pdf data in one excel files mixing, and another is 2 pdf data, another is 1 pdf data.
every excel file should be one pdf data.(individually)
how to get like that. invoice extraction.zip (1.1 MB)
Hey @Anand_Designer ,
You got almost everything correct in there, the only problem is, you are always writing the whole Datatable in the excel.
And every time you go through you add another row.
A simple fix is to just clear the Datatable Before you write the new row, using the Clear Data Table Activity.