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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
water-guy-5
Helper III
Helper III

Using an IF function to show less than a certain %

Hello, I currently have a logic measure that determines if a certain level of water flow is less than the expected level of water flow. The measure is as follows:

Red Flag =
IF ( Water[Pumpage] < Water[ExpectedPumpage], "Below Limit", "" )

I would like the measure to only return this "Below Limit" in the column if the 'Pumpage' is 25% below "Expected Pumpage", not just any amount. Thanks.
1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @water-guy-5 ,

 

Try the following formula:

 

Red Flag = 
IF ( 
    SUM(Water[Pumpage]) < SUM(Water[ExpectedPumpage]) * 0.25, 
    "Below Limit" 
)

 image.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 @water-guy-5 ,

 

Try the following formula:

 

Red Flag = 
IF ( 
    SUM(Water[Pumpage]) < SUM(Water[ExpectedPumpage]) * 0.25, 
    "Below Limit" 
)

 image.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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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