How could I have this code referred to the active sheet not the ("Analyzer - Calculator)?
Thanks for looking at.
Code:
Sub Convert_Data_2003()
'
' Convert_Data_2003 Macro
'
Dim my_range As Range
With Worksheets("Analyzer - Calculator")
Set my_range = .Range("G5:G10000")
my_range.Formula = _
"=This_where_My_Formula_Will_Be_input"
End With
'
End Sub
Thanks for looking at.