Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to concatenate text from 4 cells so that in the final string the text
from each cell is padded up to a length of 40 characters. any ideas? -- john |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=left(a1&rept(" ",40),40)&left(b1&rept(" ",40),40) & .....
If you have numbers/dates, you may want: =right(rept(" ",40)&text(a1,"mm/dd/yyyy"),40) & ..... john dunford wrote: I need to concatenate text from 4 cells so that in the final string the text from each cell is padded up to a length of 40 characters. any ideas? -- john -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Max number of characters in a cell | Excel Discussion (Misc queries) | |||
Number of characters in a cell (one row, merged columns) | Excel Discussion (Misc queries) | |||
fill or truncate to a certain number of characters in a cell | Excel Worksheet Functions | |||
How do you count number of characters in a single cell | Excel Worksheet Functions | |||
How do you count number of characters in a single cell | Excel Worksheet Functions |