@AT88
Try below approach:

Code:
Pdf.ExtractTablesFromPDF.ExtractTables PDFFile: $'''C:\\Boot\\platform.pdf''' MultiPageTables: True SetFirstRowAsHeader: True ExtractedPDFTables=> ExtractedPDFTables
Excel.LaunchExcel.LaunchUnderExistingProcess Visible: True Instance=> ExcelInstance
LOOP LoopIndex FROM 0 TO ExtractedPDFTables.Count STEP 1
IF LoopIndex >= 4 THEN
Excel.GetFirstFreeColumnRow Instance: ExcelInstance FirstFreeColumn=> FirstFreeColumn FirstFreeRow=> FirstFreeRow
Excel.WriteToExcel.WriteCell Instance: ExcelInstance Value: ExtractedPDFTables[LoopIndex].Datatable Column: $'''A''' Row: FirstFreeRow
END
END
How to copy/paste the above code into your PAD?

Thanks,
Deenuji Loganathan 👩💻
Automation Evangelist 🤖
Follow me on LinkedIn 👥
-------------------------------------------------------------------------------------------------------------
If I've helped solve your query, kindly mark my response as the solution ✔ and give it a thumbs up!👍 Your feedback supports future seekers 🚀