I have two name ranges defined: StreetAddress (value = "24 Santa Monica Blvd.") and CityStateZip (value = "Los Angeles, CA 90510").
How can I get Excel to produce the result below in a single cell without using VBA:
Joe lives at:
24 Santa Monica Blvd.
Los Angeles, CA 90510
I think I can use:
="Joe lives at:"&StreetAddress&CityStateZip"
but am unable to insert the required Ctrl-J or Alt+0010 characters to force a newline.
Any ideas, anyone?
Thanks in advance.
How can I get Excel to produce the result below in a single cell without using VBA:
Joe lives at:
24 Santa Monica Blvd.
Los Angeles, CA 90510
I think I can use:
="Joe lives at:"&StreetAddress&CityStateZip"
but am unable to insert the required Ctrl-J or Alt+0010 characters to force a newline.
Any ideas, anyone?
Thanks in advance.