This code is intended to place the word "New" if the checkbox is checked, and a ✓ checkmark if it's unchecked.
If CheckBox2.Value = False Then
Cells(3, 3) = ChrW(&H2713) # <-- checkmark ✓
Else: Cells(3, 3) = "New"
End If
However, currently, this only places the word "New" if the checkbox is selected, but it won't place a ✓ checkmark if it's not selected! I can get a checkmark to be displayed when they select the checkbox then unselect the checkbox, but this is cumbersome.
How do I fix this?