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 need to use Range and Value functions. Range would be the cell where you want the text you want Value would be the text that you want in that Cell
Range
Valu
Value
Range("A1").Value="whatever text"