Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel VBA need check mark character to show in cell... 1

Status
Not open for further replies.

DougP

MIS
Dec 13, 1999
5,985
US
we need a check mark to show on a report card for lower grades.
but when I paste teh Character they use in the VBA code is changes it to a quation mark.

ActiveCell.Value = "?" ' CHECK MARK

how can I make it a square root sign which is what they are using now.
the font for the cell is Arial.
I dont see a ASCII symbol for a square root either?

DougP
 


hi,

Have you checked Insert > Symbol?

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
this is in the VBA code not the cell itself

ActiveCell.Value = "?" ' CHECK MARK

need to replace the? with a square root symbol

DougP
 


My question stands.

Have you found the FONT & CHARACTER?

Do some heavy lifting. That's EXACTLY what I or any of us would have to do to answer YOUR question.

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
A starting point:
Code:
With ActiveCell
  .Value = "Ö"
  .Font.Name = "Symbol"
End With

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top