Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How can you remove "spaces" between numbers in one cell? (ie 1 000 000) I
need to remove the space between the numbers over a large range of cells with numbers in them with spaces. I have tried trimming, cleaning the cells and defining them as numbers but it seems like the only way to do this is by physically going into each cell and deleting the space. A shortcut in doing this would appreciated. Thanks for all your help. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Highlight the column, Ctrl+H, find space replace with nothing. Will
auto-format to number. "Morten" wrote: How can you remove "spaces" between numbers in one cell? (ie 1 000 000) I need to remove the space between the numbers over a large range of cells with numbers in them with spaces. I have tried trimming, cleaning the cells and defining them as numbers but it seems like the only way to do this is by physically going into each cell and deleting the space. A shortcut in doing this would appreciated. Thanks for all your help. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming its truly the space symbol:
=VALUE(SUBSTITUTE(A2," ","")) Note that if space character is some other unprintable character such as CHAR(160), you could use the CODE function to determine which symbol it is exaclty, and then remove it like so: =VALUE(SUBSTITUTE(A2,CHAR(160),"")) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Morten" wrote: How can you remove "spaces" between numbers in one cell? (ie 1 000 000) I need to remove the space between the numbers over a large range of cells with numbers in them with spaces. I have tried trimming, cleaning the cells and defining them as numbers but it seems like the only way to do this is by physically going into each cell and deleting the space. A shortcut in doing this would appreciated. Thanks for all your help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Trim Characters Other Than An Empty Space At The End Of A Cell | Excel Worksheet Functions | |||
Adding a space inbetween letters and numbers in a cell | Excel Discussion (Misc queries) | |||
Taking out or reducing space betwen paragraphs | Excel Discussion (Misc queries) | |||
Deleting a space between a group of Numbers & Letters in a cell | New Users to Excel | |||
Trim function doesn't clean out ASCII Code 160 (Space) | Excel Worksheet Functions |