Created
May 13, 2020 22:05
-
-
Save DavidMetcalfe/5ec53429fe46d6fe31eaaf8407719c06 to your computer and use it in GitHub Desktop.
Single and double quotes in VBA strings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Const vbDoubleQuote As String = """" 'represents 1 double quote (") | |
Public Const vbSingleQuote As String = "'" 'represents 1 single quote (') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment