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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply

Help with DAX Query: Not including values that are 0

So I currently have a DAX query like this:

 

Average Commission R12 =
 
CALCULATE(
SUM(
'Rolling 12 Month Transaction Report'[Total Income]),
 
'Rolling 12 Month Transaction Report'[Total Income] <> BLANK())
 
/
 
CALCULATE(
SUM(
'Rolling 12 Month Transaction Report'[Discounted Premium]),
 
'Rolling 12 Month Transaction Report'[Discounted Premium] <> BLANK())
 
 
What this is basically doing is dividing Total Income by Discounted premium.
 
I get a few values that are NaN (Not a number) because some of the values for total income and discounted premium are 0. I want to wrap this query in an IF Statement that says 
 
IF total income OR discounted premium == 0, then return 0, else do my formula. 
 
Can anyone help me write the DAX for this? really struggling as when I try to put it in an IF statement it only lets me reference measures not columns.
 
Thanks everyone!
 
 
 
 
 
 
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@AndrewDavies437 , use divide and try

 

divide( SUM(
'Rolling 12 Month Transaction Report'[Total Income]), SUM(
'Rolling 12 Month Transaction Report'[Discounted Premium]))

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

@AndrewDavies437 , use divide and try

 

divide( SUM(
'Rolling 12 Month Transaction Report'[Total Income]), SUM(
'Rolling 12 Month Transaction Report'[Discounted Premium]))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thank you for the hasty and correct response! This works perfectly. Have a great day 🙂 

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.