Yeah, ive been messing with this for a few hours now and I came up with that solution of inserting a blank line between each line in my spreadsheet.
Works but is kind of annoying because my spreadsheet is a list of many lines (labelled circles of various sizes and positions) that get sorted and filtered by the users.
Those blank lines disappear with every sort and must be reinserted if im to paste to Acad.
Will have to write a little VBA to insert those lines as there are a few hundreds of them...
Tried adding the line feed (char(10)) or carridge return (char(13)) to the excel formula but a weird thing happens when I copy and paste into the command line: for some reason, a double quote (") appears at the begining of each command.
So the formula is:
="dtext -" & A2 & "," & B2 & " 2.3 0 " & A1 & CHAR(10)
The text that appears in the cell is:
dtext -160,3' 2.3 0 M-1A
(with a line feed character which shows up as a multi line cell in excel)
and this is the result of the paste into Acad:

Notice that quote before dtext...
Anyideas on how to prevent that?
thanks,
Fred