VBA – Option Compare (Text || Binary || Database)
Option Compare in VBA is the thing, that will save you ugly stuff like this one: Sub Testing() Dim userInput As String userInput = InputBox(“What is decimal 4094 in hex?”) If UCase(userInput) = UCase(“ffe”) Then Debug.Print “You have correctly written …
VBA – Option Compare (Text || Binary || Database) Read more »