sophiey
(sophiey)
December 22, 2022, 5:36am
1
Hi guys,
Im trying to write this table from a pdf into csv (comma delimited) but it breaks the values into columns.
I also tried to append text into word (preserved format) but the table structure is not captured.
My end goal is to copy this table from PDF into Excel with structured format.
sophiey
(sophiey)
December 23, 2022, 2:29am
3
Any tips to keep the values in one column?
Anil_G
(Anil Gorthi)
December 23, 2022, 4:10am
4
@sophiey
Read the data into datatable and proceed as below
Add a new column screening atatus
Inside assign use `dt.Columns(“screening status”).Expression = “[screening]+ “’ ‘” + [status]”
Then you can delete the old columns and these two columns would be joined
Hope this helps
Cheers
sophiey
(sophiey)
December 23, 2022, 7:40am
5
thanks for the info. just found out that there will be null values inside the datatable hence the merging might not helped from the original csv file.
Now i’m looking at to use Start Process open the pdf file and save as docx (table format is preserved this way).
how can i automate “save pdf as docx” ?
Anil_G
(Anil Gorthi)
December 23, 2022, 7:47am
6
@sophiey
The same way you explained…use sstart process try opening pdf in word and then it gives a prompt mostly try to handle the prompt using prallel
Activity to click on the prompt and then save it
Cheers
1 Like
system
(system)
Closed
January 4, 2023, 4:13am
7
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.