1
How to break line in formula in Excel 2013 (above)?
I used to do it this way:
="linha1"&CARACT(13)&CARACT(10)&"linha2"
Current result:
linha1linha2
Expected result:
linha1
linha2
Theoretically only the CARACT(10)
already represents a vbNewLine
, but I always had to use the CARACT(13)
together to work.
However, in the most current version of Excel, I am not able to visualize the line break.
Could someone help?
In the corresponding cell formula right-click mouse goes on option
Format Cells
flapAlignment
and in theText control
tick the boxWrap text
. Thus the commandCARACT(10)
will work.– gato
Excellent! Thank you!
– Evert