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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I would like to filter for the max value in one column based upon another column which is a project name over a range of time.
Basically I want to find the max total employees for each project which has multiple entries and create a new table with just the max value for each project
Solved! Go to Solution.
Hi @Anonymous ,
One sample for your reference. Here we can create a calculated column as below to work on it.
max total = CALCULATE(MAX(Table1[Total Employees]),FILTER(Table1,Table1[Project name]=EARLIER(Table1[Project name])))
Hi @Anonymous ,
One sample for your reference. Here we can create a calculated column as below to work on it.
max total = CALCULATE(MAX(Table1[Total Employees]),FILTER(Table1,Table1[Project name]=EARLIER(Table1[Project name])))
thank you very much
In Power Query
The load that into the data model.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting