View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
FSt1 FSt1 is offline
external usenet poster
 
Posts: 3,942
Default Concatenate error

hi
=Trim(A1) & b1 & C1 & D1
or
=Concatenate(Trim(A1),B1,C1,D1)

either way

Regards
FSt1

"Susie" wrote:

I have 4 columns I want to combine with the concatenate function. Column 1
has either 3,4 or 5 characters. When I use the function, it works fine -
except there are spaces after the characters in column 1. There are no extra
spaces that show up from columns 2,3 or 4.

How do I set column 1 to only take the characters that are there over to the
concatenated function. I don't want any extra spaces.