ORDERBY and SELECT with 2 items to be filtered

I need to sort and filter rows at the same time. I have 2 items to filter out:
[Milestone] โ€œ13 Closedโ€
[Milestone] "14 Funded

The expression below works fine, I just need to add the 2nd item and dont know how

Current expression
ORDERBY(SELECT(customers[ID],[Milestone]<>โ€œ13 Closedโ€),[Customer],FALSE)

Please help
Thanks

0 6 322
6 REPLIES 6

Hi @teamMedina
Check out AND()

Yes, what @Lynn said โ€ฆ you can use AND() to combine filtering criteria in the SELECT() function

In the SELECT(). It would look like this:

ORDERBY(SELECT(customers[ID], 

               AND([Milestone]<>โ€œ13 Closedโ€, [Milestone]<>โ€œ14 Fundedโ€)),

        [Customer],FALSE)

Naiiiiissssโ€ฆ it worked. Thank you Lynn and John for taking the time โ€ฆ Enjoy the holiday weekend

Cheers
TM

Where do I write the AND?
ORDERBY(SELECT(customers[ID],[Milestone]<>โ€œ13 Closedโ€),[Customer],FALSE)

@teamMedina
Good work!

Top Labels in this Space