Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
BSM1985
Helper IV
Helper IV

Boolean 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 MEASURE 2:

COLUMN C= CALCULATED MEASURE 1

 

Data Set:

Boolean Measure.PNG

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@BSM1985 

can 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)

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@BSM1985 

Here are the 2 measures 

 

Measure 1 = 

CALCULATE(
    MAX('Table'[COLUMN C]),
    ALLEXCEPT('Table','Table'[COLUMN A],'Table'[COLUMN B])
)
Measure 2 = 
IF(
    MAX('Table'[COLUMN C] ) = [Measure 1],
    TRUE(),
    FALSE()
)

 

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

ryan_mayu
Super User
Super User

@BSM1985 

can 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)

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks 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.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors