Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
Solved! Go to Solution.
=List.Max(Table.SelectRows(Calendar,each [holiday]=1)[date])
You could also just use Table.Max, which lets you use two parameters, like
=Table.Max(PriorStepOrTableName, {"Date", "Holiday"})
--Nate
You could also just use Table.Max, which lets you use two parameters, like
=Table.Max(PriorStepOrTableName, {"Date", "Holiday"})
--Nate
=List.Max(Table.SelectRows(Calendar,each [holiday]=1)[date])
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 7 | |
| 5 | |
| 5 |