Copying Web Tables and pasting into Numbers is not working correctly.
Mac Pro, MacBook, Mac Mini
Mac Pro, MacBook, Mac Mini
could be that IE and Safari implement HTML tables differently?

robster1225 wrote:
I know this works in excel, can it be done in Numbers? Basically, if you copy a table and paste it in numbers, you get your info going down in a straight line.
set mydata to get the clipboard as text
set AppleScript's text item delimiters to {(ASCII character 13) as text}
set mylines to text items of mydata
set AppleScript's text item delimiters to {return}
set the clipboard to mylines as text
set AppleScript's text item delimiters to {""}
Lowell Stewart wrote:
Safari copies the text using Unix-style line breaks (ASCII character 13), while Numbers expects the text to have Mac-style line breaks (ASCII character 10).
set the clipboard to (the clipboard as text)
Copying Web Tables and pasting into Numbers is not working correctly.