A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I need to remove space from barcode numbers in Excel. The numbers are formatted like "123_456_789_" where the underscore denotes a space. I want to convert this number to "123456789". Any assistance would be greatly appreciated.
If you want the string "123456789", try this formula:
=SUBSTITUTE(A1," ","")
If you want the number 123456789, try this formula:
=0+SUBSTITUTE(A1," ","")
Make sure that you don't have any number formatting in the cell that will displays numbers with blanks as thousands separators.
Hope this helps / Lars-Åke