Thread: Reapply filter
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
ryguy7272 ryguy7272 is offline
external usenet poster
 
Posts: 2,836
Default Reapply filter

See this example:
http://www.rondebruin.nl/copy5.htm#Add

I think you need something such as:
'Filter the range
rng.AutoFilter Field:=FieldNum, Criteria1:="=" & cell.Value
'etc., etc., etc., etc., etc.,
'Close AutoFilter
ws1.AutoFilterMode = False

Experiment with the macro recorder too!!


Regards,
Ryan---

--
RyGuy


"Choose Top 3 Automatically" wrote:

Is there a way to reapply a filter automatically?