Forum Discussion
Anonymous
3 years agoNot applicable
Get max date with conditions by Query
Hi,
I have a Calendar table and I am trying to get max date with conditions by Query.
How can I get 1/3/2021 (max date & holiday=1)?
Calendar table
| date | holiday |
| 1/1/2021 | 1 |
| 1/2/2021 | 1 |
| 1/3/2021 | 1 |
| 1/4/2021 | 0 |
| 1/5/2021 | 0 |
I have try this but those are returning 1/5/2021.
= List.Max(Calendar[date], each [holiday]= 1)= List.Max(Calendar[date], each [holiday]= 0)
Any help would be greatly appreciated.
=List.Max(Table.SelectRows(Calendar,each [holiday]=1)[date])
- Anonymous3 years ago
You could also just use Table.Max, which lets you use two parameters, like
=Table.Max(PriorStepOrTableName, {"Date", "Holiday"})
--Nate
3 Replies
- wdx223_DanielCommunity Champion
=List.Max(Table.SelectRows(Calendar,each [holiday]=1)[date])
- AnonymousNot applicable
wdx223_Daniel
Thank you😊It worked😀
- AnonymousNot applicable
You could also just use Table.Max, which lets you use two parameters, like
=Table.Max(PriorStepOrTableName, {"Date", "Holiday"})
--Nate