Not exactly sure what you are trying to do... copy to another sheet? Just place in clipboard?
To just place the filtered information in the clipboard, I guess you could do this:
Code:
Range("a1:f" & Range("f65536").End(xlUp).Row).Copy
However I think it'd be just as easy to place the paste in the same command if you're copying to another sheet, like this:
Code:
Range("a1:f" & Range("a1:f" & Range("f65536").End(xlUp).Row).Copy _
Destination:=Worksheets("Sheet2").Range("A1")
Hope this helps at least point in the right direction.