How do you insert wingdings symbols using VBA macro?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to write/record a VBA macro to insert a wingdings 2 symbol? I
am specifically interested in the the open circle, solid black circle, open
square, and solid black square. Thanks for any help!
 
Sub demo()
With ActiveCell
.Value = 1
.Font.Name = "Wingdings 2"
End With
End Sub
 
nope, that didn't seem to work. i'm an amateur, so more instruction may be
needed.

thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top