View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
jd jd is offline
external usenet poster
 
Posts: 1
Default How do I remove a blank separator from a number (like 2 006)

=trim



"tim m" wrote in message
...
Probably a better way to do this but this should work.

=LEFT(A1,1)&RIGHT(A1,3)

"Pontus" wrote:

I have the number 2006 in the format "2 006" in cell A1 and I want cell

A2 to
be in the correct format "2006". How do I accomplish this? Thanks!!