I\'ve been working with SQL and Excel Macros, but I don\'t know how to add text to a cell.
I wish to add the text \"01/01/13 00:00\" to cell A1
\"01/01/13 00:00\"
A1
You can also use the cell property.
Cells(1, 1).Value = "Hey, what's up?"
Make sure to use a . before Cells(1,1).Value as in .Cells(1,1).Value, if you are using it within With function. If you are selecting some sheet.
.
Cells(1,1).Value
.Cells(1,1).Value
With