Someone please help me how can i paste the extracted pdf data to excel…i have extracted only registration number from pdf’s and i want to paste that no into excel building a column name of registration no…how can i do that?
Hi
Once after getting the data u can add it to a datatable
So let’s create a datatable with BUILD DATATABLE activity with columns you want
And then add the data to that datatable with ADD DATAROW activity
And then this datatable can be written to excel file with WRITE RANGE activity
If the excel file is already ready then u can write that value to the excel directly with WRITE CELL activity
Cheers @Priyesh_Shetty1
@Palaniyappan all the pdf text extracted in a single variable
How can i use that variable in a data row?
Hi,
Can you share input example and expected output? It’s no problem if dummy data.
Regards,
filter out the registration number using regex, then write the number to excel file using write range.
To extract specific text from a PDF and paste it into Excel using UiPath, you can follow these steps:
- Use the “Read PDF Text” activity to read the entire text from the PDF into a string variable.
- Use string manipulation or regular expressions to extract the specific text you need from the string variable.
- Use the “Excel Application Scope” activity to open Excel.
- Use the “Write Cell” activity to paste the extracted text into the desired cell in the Excel spreadsheet.
I want this 3 text to be pasted in excel with the column name of Registration number.
I have filtered but know i am stucked how should i paste that extracted text to excel with column name…
Can you share the expected excel result in a screenshot.
Will excel file be empty initially?
Please share sample
Yes excel will be empty only…i have extracted the text with the help of read pdf with ocr…Know that extracted text i wanted to paste to excel…How can i do that ?
Assign the value to a variable and write using write range.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.