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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Row context measure

Hello everyone,

 

Need some help.

I have Project KPI board. Everything was fine till that point, where I had to calculate how much Bad projects are?

I think it's because Status measure I calculated is not row based.

 

 

Status = IF([CPI]>0,7; "Good";IF([CPI]>0,5; "Need attention";"Bad"))
CPI = [EV]/[Worklog]
Spoiler
EV = CALCULATE(  SUM(jira[Billabe Hours]); FILTER(jira;jira[Resolution]<>BLANK()))
Worklog = SUM(Worklog[WorklogHours])

 

 

I looked through some posts, but I couldn't get right DAX to fit.

 

Can anyone help me, this is pbix file:

https://drive.google.com/file/d/1gQyMKnEirfIYimoI1sMVfftAT0mBOWQW/view?usp=sharing

 

1 ACCEPTED SOLUTION

HI @Anonymous ,

Based on my understand, In your scenario, the CPI of Project 2 and 3 are less than 0.5, then the result will be 2.

You can use the following DAX query:

Measure =
VAR a =
    ADDCOLUMNS ( VALUES ( Component[Project] ), "CPIa", [CPI] )
RETURN
    COUNTROWS ( FILTER ( a, [CPIa] < 0.5 && Component[Project] <> BLANK () ) )

The measure you shared will not get the true data, the [CPI] is a measure, it will be calculated based on the filter, but in the measure "BAD Project", it will not have the context of Project names.

Best Regards,

Teige

View solution in original post

4 REPLIES 4
TeigeGao
Solution Sage
Solution Sage

Hi @Anonymous ,

Based on my check, I haven't found problem in your DAX query, could you please tell me what's problem did you meet?

Best Regards,

Teige

Anonymous
Not applicable

Thanks, @TeigeGao for the replay

 

Problem is by calculating the number of BAD projects.

The measure

BAD Project = CALCULATE(DISTINCTCOUNT(Component[Project]);FILTER(Component;[CPI]<0,5))
Doesn't work it brings all projects

HI @Anonymous ,

Based on my understand, In your scenario, the CPI of Project 2 and 3 are less than 0.5, then the result will be 2.

You can use the following DAX query:

Measure =
VAR a =
    ADDCOLUMNS ( VALUES ( Component[Project] ), "CPIa", [CPI] )
RETURN
    COUNTROWS ( FILTER ( a, [CPIa] < 0.5 && Component[Project] <> BLANK () ) )

The measure you shared will not get the true data, the [CPI] is a measure, it will be calculated based on the filter, but in the measure "BAD Project", it will not have the context of Project names.

Best Regards,

Teige

Anonymous
Not applicable

Thanks, @TeigeGao it worked!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.