I want to insert a formula into a specific cell, something like
ActiveCell.FormulaR1C1 = "=EOMONTH (Now(), -1)"
This works fine and gives me the last day of last month.
But this doesn't work because of the "
ActiveCell.FormulaR1C1 = "=Right("0000"&c3,4)"
The formula has quotes in it, and the
VB chokes as it expects only one set
of quotes.
--mike