Is the document digital, can you use ctrl+a, ctrl+c to copy the text?
If so you can use UiPath.PDF.Activities.
Speficically the Read PDF Text activity.
The problem will be formatting it into a nice datatable to write into an excel-document.
You could try with a bunch of regex and pattern matching.
Alternatively you could use some sort of document understanding tool, but that might be overkill in this specific case.
Try
first read pdf file with read pdf activity
remove Your Transaction Details with pdftext.replace(“Your Transaction Details”,“”)
then use generate datatable from text activity with column headers in property
then write range activity to write data to excel with resultdata from generate datatable
hope this helps
if you face any issue please attach sample file to provide better approach
If the Document is a Digital Document, then using the Combination of PDF activities and regex we should be able to achieve the required output. You can check the below post which should also be similar to your case :