I was able to figure out the problem. When I initially tried to combine inclusion and exclusion criteria to my advanced filter, I had the formula for eliminating the account numbers on the same row as the first department that I wanted to include. It occurred to me that when criteria is on the same row, Excel reads this as an and statement, so it was only eliminating lines with account numbers that also had the first department code. By moving the first department code to the row under where the exclusion formula was placed, it would analyze these conditions exclusive of each other.
The formula I'm using to eliminate accounts is:
=ISNA(MATCH('Advanced Filter'!G2,NON_SA,0))
In this formula, 'Advanced Filter' is the worksheet where the results of the advanced filter will be placed. G2 is the first cell where account numbers will be held. NON_SA is the range where the account numbers I want to eliminate are entered.
An example of the criteria range is as follows:
CRITERIA____ DeptID ___________Period
TRUE ___________________________1
___________1101000000 __________1
___________1501100000 __________1
___________1502010000 __________1
___________1504020000 __________1
Joe4, I'm sure your link would probably tell me what I figured out. I'll look it over just in case there's anything new that I can glean from it.