Forum Discussion
BSM1985
Helper IV
5 years agoBoolean Output using Calculated Measure
Hi Team, Below is my data set. I have 2 calculated measures. Please advice how to achieve CALCULATED MEASURE 2 CALCULATED MEASURE 1: Max of COLUMN C by COLUMN A and COLUMN B CALCULATED MEA...
ryan_mayu
Super User
5 years agocan we create two columns for this?
Column = CALCULATE(MAX('Table'[C]),ALLEXCEPT('Table','Table'[A],'Table'[B]))
Column 2 = if('Table'[C]='Table'[Column],True,FALSE)
BSM1985
Helper IV
5 years agoThanks a lot ryan_mayu ,
Will it be possible to have this solution in 1 calculated measure for 2 reasons below?
1. We have very big model which is of 500 MB in size. When I tried with calcualted field which is the final field, its keep on loading for long time
2.As per client request, we would like to minimize the number of calcualted fields.
Please advice if we can achieve this with 1 calculated measure. Thank you.