cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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]))

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]))

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

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors