A VBA newbie question...

What is the escape character for Excel VBA? I want to do print a string that contains quotation marks to a cell. In other worrds the "" marks are *within* the string quotation marks...

This code will not work:

Sheets("sheet1").Cells(1,1).value = "He said, "this is Excel" "

...what should it be?