Hi, I’m a beginner in UiPath for the last 2 months. Question is, I extracted data table from multiple pdfs. According to local panel, it extracted the whole table. but when i append into a single excel sheet, it only appends the last row starting from the second pdf. Sorry, can’t show data due to data confidentiality. Thank you.
Note : I removed the first row because it did not detect it as header. So I build a data table for header.
From the Screenshot we can see that there are two datatables being used. Isn’t ExtractDatatable variable the one that needs to be used in Write Range activity ?
<ExcelApplicationScope>
<WriteRange Range="A1" DataTable="[yourDataTable]" />
<!-- For Each PDF -->
<!-- Extract data into 'extractedDataTable' -->
<WriteRange Range="A2" DataTable="[extractedDataTable]" />
</ExcelApplicationScope>
i just realized why it take the last row only. apparently, for the first pdf, the table extraction extracted the header as row. so i deleted the first row and added a new header. and i found out that for the second pdf, the table extraction activity did recognize the header. but, i already deleted the first row. that’s why i have only the last row. is there a way to filter if the first row have the header or not so i can delete the first row?