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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
o59393
Post Prodigy
Post Prodigy

How to hide -100% values

Hi all

 

The dax "Detlta Growth" works well, the issue is with the -100% that I cannot hide as seen below:

 

o59393_0-1727463378547.png

 

 

 

Delta Growth = 

DIVIDE(SUM('Append OU Demand'[OU Demand])-[LY OU Demand],[LY OU Demand],BLANK())

 

 

Problem might be because of the "LY OU demand" measure that returns (correctly) the previous date demand as seen for 2026:

 

o59393_2-1727462999056.png

How can I hide the -100% values from the table to have something like this below (without showing 2026)?

 

o59393_5-1727463179699.png

 

Thanks.

 

1 ACCEPTED SOLUTION
sevenhills
Super User
Super User

Try this, as you have not uploaded .pbix, just a guess: You are trying to hide either for future dates and/or SUM([OU Demand]) has no value. Try to change somewhat like below to all measures. 

       IF Statement, BLANK(), Calculated value. i.e., if Statement and calculation formula varies for each measure. 

 

 

Delta Growth = 
VAR _R = DIVIDE(SUM('Append OU Demand'[OU Demand])-[LY OU Demand],[LY OU Demand],BLANK())

RETURN IF ( _R = 1.00, BLANK(), _R)

 

 

Not complete solution, but giving the steps 🙂

View solution in original post

2 REPLIES 2
sevenhills
Super User
Super User

Try this, as you have not uploaded .pbix, just a guess: You are trying to hide either for future dates and/or SUM([OU Demand]) has no value. Try to change somewhat like below to all measures. 

       IF Statement, BLANK(), Calculated value. i.e., if Statement and calculation formula varies for each measure. 

 

 

Delta Growth = 
VAR _R = DIVIDE(SUM('Append OU Demand'[OU Demand])-[LY OU Demand],[LY OU Demand],BLANK())

RETURN IF ( _R = 1.00, BLANK(), _R)

 

 

Not complete solution, but giving the steps 🙂

Ritaf1983
Super User
Super User

Hi @o59393 

please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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