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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
ovetteabejuela
Impactful Individual
Impactful Individual

Influence Grand Total Behavior

Hi

ovetteabejuela_1-1631533790840.png

 

Formula:

Orange (Measure) = Divide(Sum(Numerator), Sum(Denominator),0)

Green (Measure) = IF([Orange (Measure)] >= 1,10,

                                       IF([Orange (Measure)] >= .975,5,

                                               IF([Orange (Measure)] >= .95, 1, 0 ) ))
 

Please see my question embeded in the image above. 

 

 

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

Hi @ovetteabejuela ,

 

Please try the following formula:

 

Green (Measure) = 
var t = IF([Orange (Measure)] >= 1, 10,
            IF([Orange (Measure)] >= .975, 5,
                IF([Orange (Measure)] >= .95, 1, 0 ) ) )
return IF( ISFILTERED('Table'[Date]), t, SUMX('Table', t) )

vkkfmsft_0-1631761280667.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

1 REPLY 1
v-kkf-msft
Community Support
Community Support

Hi @ovetteabejuela ,

 

Please try the following formula:

 

Green (Measure) = 
var t = IF([Orange (Measure)] >= 1, 10,
            IF([Orange (Measure)] >= .975, 5,
                IF([Orange (Measure)] >= .95, 1, 0 ) ) )
return IF( ISFILTERED('Table'[Date]), t, SUMX('Table', t) )

vkkfmsft_0-1631761280667.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.

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors