Hi Guys,
I have recorded the following macro
I have recorded the following macro
Code:
Sub Macro1() Cells.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("C1").Select
Range("$A$1:$C$500").AutoFilter Field:=3, Criteria1:="="
Rows("3:3").Select
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
Selection.Delete Shift:=xlUp
Range("$A$1:$C$449").AutoFilter Field:=3
Range("D2").Select
End Sub
Can I please get this to work on all the sheets in the workbook?
Thanks for your help
Asad