Hi Again:
(Excel 97 SR22 Win98)
I need some help with the following code, which is called from another sub:
Sub Current_Data_Code()
Dim BottomRow As Long
Worksheets(“current_Data”).Activate
Range(“C4:O10000”).ClearContents
Worksheets(“current_Data”).Range(“c2:c2”).QueryTable.Refresh
Range(“k1:k1”).Select
Range(“k1”).Activate
‘Worksheets(“current_Data”).Range(“K1:K1”).Activate
Application.ActiveCell.Calculate
BottomRow = ActiveSheet.Range(“K1:K1”)
ActiveSheet.Range(“L3:O3”).Activate
Range(“L3:O3”).Select
Selection.AutoFill Destination:=Range(“L3:O” & BottomRow)
Worksheets(“current_Data”).Range(“L3:O” & BottomRow).Calculate