Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I have a column that contains a text log of search terms entered in a search
box. The column contains the code for the printable ascii characters (like %20 for space, %24 for $, etc), but does contain the actual alpha/numeric characters Is there a function in each that will allow me to change the codes to the actual characters or will I have to create a massive search and replace macro for the 34 codes. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Your suggestion about the macro is O.K. It is not massive. Start with:
Sub PercentConverter() For Each r In ActiveSheet.UsedRange v = r.Value v = Application.WorksheetFunction.Substitute(v, "%20", " ") v = Application.WorksheetFunction.Substitute(v, "%24", "$") r.Value = v Next End Sub and add the remaining 30 lines of code. -- Gary''s Student - gsnu201001 "susanmgarrett" wrote: I have a column that contains a text log of search terms entered in a search box. The column contains the code for the printable ascii characters (like %20 for space, %24 for $, etc), but does contain the actual alpha/numeric characters Is there a function in each that will allow me to change the codes to the actual characters or will I have to create a massive search and replace macro for the 34 codes. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Entering ASCII codes with Excel 2003 | Excel Discussion (Misc queries) | |||
Replacing a list of codes with names | Excel Worksheet Functions | |||
replacing codes with actual values | Excel Discussion (Misc queries) | |||
Non-Printable Worksheets | Excel Discussion (Misc queries) | |||
Replacing ascii characters | Excel Worksheet Functions |