Select function based on multiple criteria expression

Hey all, been working lots with a formula suggested by this wonderful community 

Select(Dates[Time Slot] , [Level] = [_thisrow].[Level])

 

Everything going great, i have hit a few stumbling blocks though regarding multiple choices on the select function and wondered the best way of getting around it

Here is the data id like to select with "Time Slot" being based on event AND level selected, doable?

Thank you all

Solved Solved
0 4 131
2 ACCEPTED SOLUTIONS

Select(Dates[Time Slot] , AND( [Level] = [_thisrow].[Level], [Event] = [_thisrow].[Event]))

View solution in original post

4 REPLIES 4

Can you fix this for me super quick :D?

And(Select(Dates[Time Slot] ,
[Event] = [_thisrow].[Event])
And(Select(Dates[Time Slot],
[Level] = [_thisrow].[Level])))

had it semi working without the first AND but still not right

Select(Dates[Time Slot] , AND( [Level] = [_thisrow].[Level], [Event] = [_thisrow].[Event]))

Literally perfect, didnt know you could use it mid formula like that, thats really cool cheers marc and alpha!

Top Labels in this Space