Does anybody know how to put quotes around a value in a cell using a macro?
Sub MacroQuotations()
'
' Macro3 Macro
' Macro recorded 6/20/2009 by drmingle
'
'I need this macro to place quotes around whatever the cell value is in (I8) so that when it is copied and pasted I can make use of the data.
Range("I8").Select
ActiveCell.FormulaR1C1 = Range("I8")
End Sub
Sub MacroQuotations()
'
' Macro3 Macro
' Macro recorded 6/20/2009 by drmingle
'
'I need this macro to place quotes around whatever the cell value is in (I8) so that when it is copied and pasted I can make use of the data.
Range("I8").Select
ActiveCell.FormulaR1C1 = Range("I8")
End Sub