Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I understand how to use the concatenate function to merge several cells with
text into one cell. My question is this: after the concatenate function merges the specified cells into one cell, how can you then put spaces between the text strings? For example, say the concatenate function merges the following cells: firstname, lastname, and age. The result of the concatenate function would then be firstnamelastnameage. What I am asking is how can I then insert spaces between the strings that were merged together so the cell would contain firstname lastname age? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
When you are concatenating the cells, use a formula similar to this =A1 & "
" & B1 it will put the space between value of A and value of B. "BenG" wrote: I understand how to use the concatenate function to merge several cells with text into one cell. My question is this: after the concatenate function merges the specified cells into one cell, how can you then put spaces between the text strings? For example, say the concatenate function merges the following cells: firstname, lastname, and age. The result of the concatenate function would then be firstnamelastnameage. What I am asking is how can I then insert spaces between the strings that were merged together so the cell would contain firstname lastname age? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi, you can do something like this: =CONCATENATE(A1," ",B1," ",C1)
Dave -- Brevity is the soul of wit. "BenG" wrote: I understand how to use the concatenate function to merge several cells with text into one cell. My question is this: after the concatenate function merges the specified cells into one cell, how can you then put spaces between the text strings? For example, say the concatenate function merges the following cells: firstname, lastname, and age. The result of the concatenate function would then be firstnamelastnameage. What I am asking is how can I then insert spaces between the strings that were merged together so the cell would contain firstname lastname age? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=a1&" "&b1&" "&c1
And if you ever have to concatenate a date (or any number you want formatted): =a1&" "&b1&" "&text(c1,"mm/dd/yyyy")&" "&text(d1,"$0.00") (as an example) BenG wrote: I understand how to use the concatenate function to merge several cells with text into one cell. My question is this: after the concatenate function merges the specified cells into one cell, how can you then put spaces between the text strings? For example, say the concatenate function merges the following cells: firstname, lastname, and age. The result of the concatenate function would then be firstnamelastnameage. What I am asking is how can I then insert spaces between the strings that were merged together so the cell would contain firstname lastname age? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
use formatting from source cell in CONCATENATE function | Excel Worksheet Functions | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
numerical integration | Excel Discussion (Misc queries) | |||
MS Excel "Concatenate" function | Excel Discussion (Misc queries) | |||
Automatically up date time in a cell | Excel Discussion (Misc queries) |