I need to convert a scanned PDF to a numbers spreadsheet. I can't seem to find anything out there that will do it. I'd be willing to pay a bit for it, but so far, even on some downloaded trail versions, I get a blank numbers sheet.
The other issue is that you will get a bunch of text/numbers from the OCR process, not a spreadsheet. Look into csv files, as you can take text, put commas to separate the cells, and Numbers will see that as a spreadsheet (or at least Excel does).
If you are handy with find/replace, making the csv file might be fairly simple. Otherwise, I don't know of any other way to get a spreadsheet from an image.
Thanks. I had seen that article, and was trying ocr but I still ended up with nothing. (not even random numbers). I did purchase PDFpedPro which will scan the pdf document using ocr. It looks the same as it did in PDF but is searchable. I just don't know what to do with it now to get it into numbers.
csv (comma separated values) is what you need. Something like this:
Code:
Item Units Price
A 1 $5
B 2 $10
looks like this as a csv:
Code:
Item,Units,Price
A,1,$5
B,2,$10
as a csv.
Select all text (⌘ + A), copy it (⌘ + C), open textedit, and paste the text inside (⌘ + V). Now remove all formatting (Format > make plain text) and save it as blah.csv (the blah can be anything). It will ask you if you want to use txt or csv so select csv.
Now it is just a question of making sure the values are separated by commas with no spaces, and it should work. Hope that helps.