Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
These successive VBA statements don't return "cumulative" results.
Range("G2:G2000").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Range("G2499:G2510") Range("K2:K2000").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Range("K2499:K2510") In other words, filter 2 doesn't apply to the results of filter 1. So I tried to count how many rows are left after filter 1, and adjust the range for filter 2 Range("G2:G2000").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Range("G2499:G2510") countFilteredRows = SUBTOTAL(3,A3:A2000) Range("K2:K" & countFilteredRows).AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Range("K2499:K2510") That doesn't work either. Any ideas how I can make this work? Thanks |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
nested multiple if | Excel Worksheet Functions | |||
Multiple nested If statements | Excel Worksheet Functions | |||
Multiple (Nested) IF | Excel Discussion (Misc queries) | |||
Multiple Nested IFs, ORs, Ands | Excel Worksheet Functions | |||
how do I use multiple nested functions? | Excel Worksheet Functions |