I have a dropdown menu using the Valid if con...

I have a dropdown menu using the Valid if constraint from another table.

The dropdown is a Valid if: Monday[Monday Dates]

Column Type is Date.

I want to filter the valid if one more step.

I want only the Monday Dates = today and greater to show and not to show the dates less than today.

How can I further filter or constrain this dropdown?

0 6 372
6 REPLIES 6

SELECT(Monday[Monday Dates],[Monday Dates]>=TODAY())

As a โ€˜selectโ€™ expression - would that mean it must be a virtual column and be a LIST column type?

Noโ€ฆ you can use that in Valid_If

excellent!!!

so this worked well - do you know if it is possible to use this type of constraint with more than one condition?

Yes you can do that. For example SELECT(Monday[Monday Dates],AND([Monday Dates]>=TODAY(),[Monday Dates]<TODAY()))

Top Labels in this Space