Forum Discussion
sentsara
Helper II
8 years agoDAX Max value from another column based on row value
Hi , Need help on DAX Expression to repeat MAX Values of column2 in column3 . Dataset Name: Measure COLUMN1 COLUMN2 Column3 <DAX Expression needed> 1 25 2 35 3 ...
- Anonymous8 years ago
Use this DAX formula:
Column3 = CALCULATE(MAX(Table1[Column2]),ALL(Table1[Column2]))
Thanks
Raj
sentsara
Helper II
8 years agoThanks Rajendran.
IF col2 is calculated expression also ,I think we can apply the same expression. can you confirm on this?
Anonymous
8 years agoNot applicable
Yes, Calculated column also can be used there.
Thanks
Raj