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
Anonymous
Not applicable

How to make Ratio display 100 when AVE_AMT = 0 ?

Hi All

 
My below expression working fine :-
 
_RATIO = DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT])
 
May i know how to make _RATIO display 100 when AVE_AMT = 0 ?
 
Now it display Null value.
Paulyeo11_0-1610008790501.png

 

 
 
My PBI file :-
 
 
Paul Yeo 
 
 
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous ,

try like

DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT],1)

or

DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT],100)

 

or

if(INVC[AVE_AMT] =0, 1,DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT]))

or

if(INVC[AVE_AMT] =0, 100,DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT]))

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
amitchandak
Super User
Super User

@Anonymous ,

try like

DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT],1)

or

DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT],100)

 

or

if(INVC[AVE_AMT] =0, 1,DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT]))

or

if(INVC[AVE_AMT] =0, 100,DIVIDE (INVC[Amt_On Hand],INVC[AVE_AMT]))

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
MFelix
Super User
Super User

Hi @Anonymous ,

 

Theres is an optional argument on the divide function that is alternate result that is given when you have a null or error in this case change your measure to:

 

_RATIO = DIVIDE (INVC[Amt_On Hand];INVC[AVE_AMT]; 100)

MFelix_0-1610009647921.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



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.