Skip to main content
Announcements
Join us on Sept. 17 to hear how our new GenAI Assistant empowers data professionals: REGISTER
cancel
Showing results for 
Search instead for 
Did you mean: 
danieldors
Contributor III
Contributor III

If Match Multiple Criteria

Hello,

I'm trying to return a list of cases which fall in the criteria below:

Unrun_Drivers=1

Time Standard=7

Expedited= N or A

Action= Application or Additional Benefits.

I tried if match but that didnt work. Thank you for any help.

=If(Match(Unrun_Drivers='1',[Time standard]='7',[Expedited]='N','A',[Action]='Application','Additional Benefits'),([Access Number]))

1 Solution

Accepted Solutions
GaryGiles
Specialist
Specialist

Try using set analysis criteria and the aggr() function, something like this:

=aggr(only({$<[Unrun_Drivers]={'1'},[Time standard]={'7'},[Expedited]={'N','A'},[Action]={'Application','Additional Benefits'}>} [Access Number]), [Access Number])

View solution in original post

2 Replies
GaryGiles
Specialist
Specialist

Try using set analysis criteria and the aggr() function, something like this:

=aggr(only({$<[Unrun_Drivers]={'1'},[Time standard]={'7'},[Expedited]={'N','A'},[Action]={'Application','Additional Benefits'}>} [Access Number]), [Access Number])

danieldors
Contributor III
Contributor III
Author

Thank you