Valid if condition

I'm trying to create a Valid If condition on a (text) field in Table A based on using a (date) field from Table B. The condition evaluates as true and it should not for every row in the small table B.  My Valid If Is:

 

SELECT( Weeks[WeekRange], ANY(Weeks[WeekEnd]) < DATE('11/01/2024'))

 

Thoughts? 

Solved Solved
0 2 100
1 ACCEPTED SOLUTION

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Rik_Rowe1 

Can you try this:

SELECT(Weeks[WeekRange]
  [WeekEnd]<ANY(tableB[date])
)

View solution in original post

2 REPLIES 2

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Rik_Rowe1 

Can you try this:

SELECT(Weeks[WeekRange]
  [WeekEnd]<ANY(tableB[date])
)

Off course your suggestion worked! I appreciate you helping me get more sleep!! 

Top Labels in this Space