G
Guest
I'm running this macro to remove the residual apostrophes following the
export of a access table to Excel. It ran great yesterday, but for some
reason today I'm getting a syntax error at "Dim C As Excel.Range"
something missing?
Sub RemoveApostrophes()
Dim C As Excel.Range
For Each C In Application.Selection.Cells
C.Formula = C.Formula
Next
End Sub
export of a access table to Excel. It ran great yesterday, but for some
reason today I'm getting a syntax error at "Dim C As Excel.Range"
something missing?
Sub RemoveApostrophes()
Dim C As Excel.Range
For Each C In Application.Selection.Cells
C.Formula = C.Formula
Next
End Sub