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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
edcdcpowerbi
Helper I
Helper I

CALCULATE filtering table by conditional measure

I have two measures which calculate initial and final scores. 

I now wish to have a measure which has all the clients who finished with a higher final score. 

A bit lost on how to go about it, this is what i currently have which does not work. 

Would appreciate any help and advice

 

CALCULATE( COUNT( 'Client'[ID]) , [Final Score] > [Initial Score] )

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @edcdcpowerbi ,

 

Please try the following formula:

 

Measure = 
CALCULATE (
    DISTINCTCOUNT ( 'Client'[ID] ),
    FILTER ( ALLSELECTED ( Client[ID] ), [Final Score] > [Initial Score] )
)

vkkfmsft_0-1644825337496.png

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

8 REPLIES 8
v-kkf-msft
Community Support
Community Support

Hi @edcdcpowerbi ,

 

Please try the following formula:

 

Measure = 
CALCULATE (
    DISTINCTCOUNT ( 'Client'[ID] ),
    FILTER ( ALLSELECTED ( Client[ID] ), [Final Score] > [Initial Score] )
)

vkkfmsft_0-1644825337496.png

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

If you can share the details of Initial and Final Score will be better but you can try using the variable

 

 

MEASURE=

VAR x1=[Final Score]
VAR x2=[Initial Score]
RETURN
CALCULATE( COUNT( 'Client'[ID]) , x1>x2 )

 

 

Thanks for the help. It brings up the same semantic error i was getting in my initial measure unfortunately. 

@edcdcpowerbi if you can share the snapshot of your data and required output.

The output i am looking for is all the client IDs who have a higher final score. 

I've created two measures which give me total scores for intial and final, now i wish to calculate the client IDs that have a higher final score

The initial measures are creates with this measure: 

 

CALCULATE(SUM('Client')'[Total Score]),'Client[Stage] = "Final")

CALCULATE(SUM('Client')'[Total Score]),'Client[Stage] = "Initial")

Can you check the syntax of your measure. I think its not correct.

Syntax is correct for the initial and final measures, they are bringing through the correct numbers

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.