Forum Discussion
jwongsf
Jun 20, 2020Copper Contributor
Excel Display being truncated in cell
I am typing in a cell and the text exceeds the width of the cell, normally the text would just overlap into the next cell as long as there is no text in the cell. However, I have check the adjunction...
- Jul 06, 2021
Another mockup with lambdas
prefix = {"No", "No:"}; removeFirst = lambda(str, txt, SUBSTITUTE(str, txt, "",1) ); //// noPrefix = lambda(str, k, IF(k=0, TRIM(str), LET(t, removeFirst(str, INDEX(prefix,1,k)), noPrefix(t, k-1) ) )); cleanText = lambda(str, noPrefix(str, COLUMNS(prefix))); nFirstSpace = lambda( str, FIND(" ", str)-1); textStart = lambda(str, n, TRIM(LEFT(str, n))); textEnd = lambda(str, n, TRIM(RIGHT(str, LEN(str)-n))); lastPos = lambda(str, chr, n, IF(RIGHT(str)=chr, n, lastPos(LEFT(str, n-1), chr, n-1))); posRightSpace = lambda(str, lastPos(str, " ", LEN(str))); //// splitParts = lambda( str, LET( txt, cleanText(str), nA, nFirstSpace(txt), partA, textStart(txt, nA), partBC, textEnd(txt, nA), first40, textStart(partBC, 40), space40, posRightSpace(first40), partB, IF(LEN(partBC)<=40, partBC, textStart(partBC, space40) ), partC, IF(LEN(partBC)<=40, "", textEnd(partBC, space40) ), IFERROR(CHOOSE({1,2,3}, partA, partB, partC),"") ) );
jwongsf
Jun 20, 2020Copper Contributor
Hi Sergei
you are getting the same display that I am seeing, in the Past if you exceed the with of the cell it would display the rest of the text into the next cell unless the cell was not blank. But it is not display this currently and I am wonder what option is prevent this from being displayed
Thanks
James
jwongsf
Jun 20, 2020Copper Contributor
Here is the file that that displays what I am seeing,
Thanks
- Detlef_LewinJun 20, 2020Silver Contributor
- jwongsfJun 21, 2020Copper Contributor
Detlef_Lewin Sorry this did nothing to the cell>
- Riny_van_EekelenJun 21, 2020Platinum Contributor
Sorry for the duplication: Detlef_Lewin 's previous post didn't show up until after I posted mine.
jwongsf You probably activated "Show Formulas" in the Formulas ribbon.
Deactivate it and it will result in this: