Dear, I have the following problem:
I'm filling a cell with one formula and need to be duplicated for the other cells. So I'm using the code
Selection.AutoFill Destination:=Range("C2:C329")
Problem:
Whenever I run this function, I make a filter on the column to display only the # N / A. And then run the code again (with other parameters).
But it will always run the code in this range C2: C329, and it may be that within that range I do not have the # N / A.
What I need:
I always have to select the second row of the worksheet, because the first one is static.
I tried the code
Range("a1").Select
ActiveCell.Offset(1, 1).Activate
But without success.
You can help me.