I'm trying to paste a range of cells in another worksheet. This is what I have come up with so far:
For i = 1 To MyCount
wbk.Activate
Set Criteria = Sheets(IGMSheet).Cells(i, 1)
Sheets(IGMSheet).Range(Cells(i, 2), Cells(i, 4)).Copy 'this copies the 3 cells I need
w.Activate
If ActiveSheet.AutoFilterMode Then ActiveSheet.ShowAllData 'remove autofilter
Selection.AutoFilter
Range("$A$1:$BM$204").AutoFilter Field:=2, Criteria1:=Criteria.Value
Range("$BC$1:$BE$204").SpecialCells(xlCellTypeVisible).PasteSpecial
Next i
If I just update a value in the range then it works, but pasting the cells does not.
Kindly advice.