The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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