Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to write a macro that finds a Unicode character and replaces it
with an additonal Unicode character but the VBA code just puts a ? in the code. When recorded it functions fine but if I want to edit the macro later, it messes it up. I want to define the use of Unicode characters at the beginning of the VBA code so as I edit the macro the code reflects what I really want. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can define variables using the ChrW() function:
Sub ItsGoodToBeTheKing() ActiveCell.Value = ChrW(9818) End Sub -- Gary''s Student - gsnu200855 "Genealogyman" wrote: I am trying to write a macro that finds a Unicode character and replaces it with an additonal Unicode character but the VBA code just puts a ? in the code. When recorded it functions fine but if I want to edit the macro later, it messes it up. I want to define the use of Unicode characters at the beginning of the VBA code so as I edit the macro the code reflects what I really want. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I use macro to find and replace unicode characters | Excel Discussion (Misc queries) | |||
Globally define all Excel worksheets as text | Excel Programming | |||
Changing a macro to save as Unicode text | Excel Programming | |||
Changing a macro to save as Unicode text | Excel Programming | |||
Define a range globally | Excel Programming |