Square Root Symbol in VBA
Not sure if you wanted it as part of the macro you mentioned but if so here
it is
Sub Radical()
ActiveCell.NumberFormat = ChrW(8730) & "General"
End Sub
--
-John Northwest11
Please rate when your question is answered to help us and others know what
is helpful.
"MentalDrow" wrote:
Hello All,
I am looking for a way to include a square root symbol that will display in
a selected cell when the macro is activated. I've looked up the various
ASCII codes (chr(10) is awesome) but have been unable to find the particular
one for the Square Root symbol. If it is available through any other method,
please advise and I will be exceptionally grateful.
Chaz
|