Forum Discussion
Anonymous
7 years agoNot applicable
Filter for max value based upon another column
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 pr...
- 7 years ago
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])))
v-frfei-msft
7 years agoCommunity Support
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])))
- Anonymous7 years agoNot applicable
thank you very much