I am struggling to read a Unicode character back from a cell in VBA Excel.
Sub mySub()
Cells(1, "A").Value = ChrW(10003) ' Writes checkbox symbol to A1
MsgBox Asc(Cells(1, "A").Value) ' Output: 63 (questionmark symbol)
' Expected Output: 10003
End Sub
I need to read the Unicode character to see, if the checkbox symbol was modified by a user. I have no Idea how to compare a Unicode character with the cells value..