Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a cell like this:
=AT4&" "&AU4&" "&AT5&" "&AU5&" "&AT6&" "&AU6 This concatenates some text in a cell. I'd like to force a line feed after the 2nd and 4th parameter for formatting purposes. I tried & char(13) & but that didn't work. I appreciate any help on this. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I usually just insert:
&"{Alt+Enter}"& just for clarity you press Alt+Enter and not type it there. Make sure that the cell that has this formula is formatted as Wrap Text (in format cell). "dhstein" wrote in message ... I have a cell like this: =AT4&" "&AU4&" "&AT5&" "&AU5&" "&AT6&" "&AU6 This concatenates some text in a cell. I'd like to force a line feed after the 2nd and 4th parameter for formatting purposes. I tried & char(13) & but that didn't work. I appreciate any help on this. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try chr(10) and make sure you set the format to wrap text--else you'll see a
little square in your cell. =at4&chr(10)&... dhstein wrote: I have a cell like this: =AT4&" "&AU4&" "&AT5&" "&AU5&" "&AT6&" "&AU6 This concatenates some text in a cell. I'd like to force a line feed after the 2nd and 4th parameter for formatting purposes. I tried & char(13) & but that didn't work. I appreciate any help on this. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
AB, Dave,
Thanks. "Dave Peterson" wrote: Try chr(10) and make sure you set the format to wrap text--else you'll see a little square in your cell. =at4&chr(10)&... dhstein wrote: I have a cell like this: =AT4&" "&AU4&" "&AT5&" "&AU5&" "&AT6&" "&AU6 This concatenates some text in a cell. I'd like to force a line feed after the 2nd and 4th parameter for formatting purposes. I tried & char(13) & but that didn't work. I appreciate any help on this. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I insert a line feed in a formula? | Excel Worksheet Functions | |||
Concatenate with Line Feed not working | Excel Discussion (Misc queries) | |||
Fonts & Line Feed in a Cell | Excel Discussion (Misc queries) | |||
Replace Line Feed | Excel Discussion (Misc queries) | |||
How do I get rid of line feed characters in wrapped text? | Excel Discussion (Misc queries) |