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

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!!