在VBA中,賦予變量或屬性的字符串都是用引號 “" "”括起來的。如果字符串中要包含英文雙引號,可以在代碼中將輸出時包含引號的文本用兩對雙引號括起來,然后再將整個字符串用引號括起來。例如下面的代碼:
Range("A2") = """Excel"""
將在A2單元格中輸入出帶引號的“"Excel"”。
也可以使用引號的ASCII 字符(34) :
Range("A3") = Chr(34) & "Excel" & Chr(34)
下面一段代碼的輸出結果如圖。
Sub test()
Range("A1") = "Excel "
Range("A2") = """Excel"""
Range("A3") = Chr(34) & "Excel" & Chr(34)
Range("A4").Value = "He said,""Excel is an Electronic Spreadsheet Program."""
End Sub