How do you replace a yes value in a cell with a check mark?

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

Guest

I have certain cells in a worksheet that contain the word YES. I would like
to replace the word YES with a check mark.
 
try, Alt+0124

(numbers must be entered from the number keypad). Then change the font to
symbol.
 
Or, just for fun, use a macro:

Sub checkmark()
If ActiveCell.Value = "YES" Then
With ActiveCell
.Value = "ü"
.Characters(Start:=1, Length:=1).Font.Name = "Wingdings"
End With
End If
End Sub

You could add this to the worksheet code to make it automagic og just use a
shortcut.

/Sune
 

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