Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi All,
Help needed.I want to get the recent date present in a date column in query editor.In my case i cannot do it in dax.
So kindly help to add a new column MAX(date) in query editor
Sample table column
Date Max(date){New column}
1-01-2019 3-01-2019
2-01-2019 3-01-2019
3-01-2019 3-01-2019
Solved! Go to Solution.
Add a column in Advanced Editor
#"Added Custom" = Table.AddColumn(#"Removed Columns", "Custom", each List.Max(#"Removed Columns"[Date]) , type date)
#"Removed Columns" should be the name of the previous step
Add a column in Advanced Editor
#"Added Custom" = Table.AddColumn(#"Removed Columns", "Custom", each List.Max(#"Removed Columns"[Date]) , type date)
#"Removed Columns" should be the name of the previous step
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!