It can be done by pressing ALT + Enter key.. Have you tried it? Please correct me if I misunderstood the question
https://www.ablebits.com/office-addins-blog/2020/03/25/start-new-line-excel-cell-carriage-return/
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi, is it possible to enter a long line of content inside a cell with line breaks?
Not by wrap text, but break lines at the words that you desire.
Thanks.
It can be done by pressing ALT + Enter key.. Have you tried it? Please correct me if I misunderstood the question
https://www.ablebits.com/office-addins-blog/2020/03/25/start-new-line-excel-cell-carriage-return/
Here is another example of forcing text wrapping inside a formula using the char() command. For anyone else trying this formula example it uses iterative formulas i.e. it references itself to keep date initially set the first time a number greater than 0 is added to any of the referenced cells. This can be enabled by clicking file - options - formulas - enable iterative formulas.
the &CHAR(10)& string will combine existing bits of output data in your formula with the carriage returns where they are needed.
=IF(MAX(N2:N100)>0,IF(N1="",TEXT(TODAY(),"DDD"&CHAR(10)&"DD MMM"&CHAR(10)&"YYYY"),N1),"")