I'm using Excel 11.3.6 on a G5 Mac under system 10.4.10.
No, there is no REAL easy work around. However you can do this with a
defined name. For example, define a name Lend (or whatever you like) and in
the refers to box, enter
=IF(LEFT(GET.WORKSPACE(1),3)="mac",CHAR(13),CHAR(10))
Then in a cell you can type text as: ="Line1"&lend&"line2"
Make sure the cell is "wrapped" and it will work fine on either platform.
--
Bob Greenblatt [MVP], Macintosh
bobgreenblattATmsnDOTcom
You can use the INFO() function to find out which OS is being used
put this expression into a cell
=IF(INFO("system")="mac",CHAR(13),CHAR(10))
give the cell a convenient name (eg LB, for line break)
then to combine the text in A1 and A2, use
=A1&LB&A2
hope it helps!
jpdphd