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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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