Forum Discussion
siva54
Helper I
4 years agoNeed Same values corresponding to ID Column
Hi Team, I need calculated column based on category and cat Id, Some category have catid and some not have. example:- for category "Pen11" have catid"1001" for all "Pen11" catid should be Sam...
- 4 years ago
You could do it by returning the max catid per category
Result = CALCULATE(MAX('Table'[catid]), ALLEXCEPT('Table', 'Table'[Category]))
PaulOlding
Solution Sage
4 years agoYou could do it by returning the max catid per category
Result = CALCULATE(MAX('Table'[catid]), ALLEXCEPT('Table', 'Table'[Category]))