View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Stephen
 
Posts: n/a
Default How do I condense several cells to make address labels?

"CONCATENATE Excel function" <CONCATENATE Excel
wrote in message
...
I cannot seem to figure out the CONCATENATE function. I have an enormous
amount of info. on a spreadsheet, from which I would like to extrapolate
information to make a address label database. How do I do this?


CONCATENATE simply joins the text from two (or more) cells. For example,
with "qwe" in A1 and "rty" in B1,
=CONCATENATE(A1,B1)
will give "qwerty".
However, it's a redundant function since the much simler formula
=A1&B1
does the same thing.