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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Omit Measure on Table

I have the following calculated table on the % remaining column.  How do I omit values that show 100% or omit 0/0? My formula is basic as it is 

% Remaining: = 1- ('GL298A'[Total:] / 'Yearly Budget'[2022 Budget :])

 

JMcAnarney_0-1647012058149.png

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous ,

Try like

% Remaining: = if( 'Yearly Budget'[2022 Budget :] <> 0 &&'GL298A'[Total:]  <> 0,  1- divide('GL298A'[Total:] , 'Yearly Budget'[2022 Budget :], blank() ) , blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
V-lianl-msft
Community Support
Community Support

Hi ,

 

Please try 

= VAR C_ = DIVIDE('GL298A'[Total:] , 'Yearly Budget'[2022 Budget :])
IF(C_>0&&C_<1,1-C_,BLANK())

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous ,

Try like

% Remaining: = if( 'Yearly Budget'[2022 Budget :] <> 0 &&'GL298A'[Total:]  <> 0,  1- divide('GL298A'[Total:] , 'Yearly Budget'[2022 Budget :], blank() ) , blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.