Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What is the formula to replace "-" with space starting to count from the
right side. I need this to be done in a whole column |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUBSTITUTE(B1," ","-",LEN(B1)-LEN(SUBSTITUTE(B1," ","")))
and copy down -- __________________________________ HTH Bob "Turkey" wrote in message ... What is the formula to replace "-" with space starting to count from the right side. I need this to be done in a whole column |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about a nice macro?
Sub replacedashwithspace() Columns("c").Replace "-", " " End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Turkey" wrote in message ... What is the formula to replace "-" with space starting to count from the right side. I need this to be done in a whole column |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
how do I type "itis" without Excel putting a space "it is"? | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel |