Hello Friends I am trying to understand how I can use Hex in my if statement rather how below mtioned code is working in if condition. Sub test1()
Const T = &H1
Const P = &H2
Const D = &H20
R = P + D
If R And P Then
Debug.Print P
End If
If R And T Then
Debug.Print T
End If
End Sub...