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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mwimberger
Resolver II
Resolver II

Ratio on total to exclude blank rows

Hi Folks

 

I am working out a ratio of two columns which come from seperate tables. 

GC_Tonnes is the total of the tonnes in the GC Table

MR_Tonnes is the total of the tonnes in the MR Table.

 

Some months do not have either one or the other populated. I need the total rows ratio to be calculated when both tables have these populated for the month in question.

 

Here is the problem graphically.

2019-07-29_9-47-54.jpg

I've tried a bunch of if statements but the total ratio still doesn't do it correctly. Any pointers would be hugely appreciated.

 

I have attached an example PBIX so show that there are various models available and some mmodels have months missing do to an export not having been completed.

 

https://1drv.ms/u/s!AgXemCuZjUYGlXPrP1xdGa9sgsWn?e=FtVYeT

 

 

 

 

Cheers

 

Manfred

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

for the total neither the GC or MR are blank, so it just divides the values as they are

you need to first summarize per month, then filter out blanks, aggregate the result and only then divide, like this (adjust the Calendar[Month] to whatever your date dimension is)

F1_Tonnes =
VAR __PerMonth =
    ADDCOLUMNS (
        SUMMARIZE ( 'Calendar', 'Calendar'[Month] ),
        "GCTonnes", [GC_Tonnes],
        "MRTonnes", [MR_Tonnes]
    )
VAR __NoBlanks =
    FILTER ( __PerMonth, [GCTonnes] <> BLANK () && [MRTonnes] <> BLANK () )
VAR __NoBlanksGC =
    SUMX ( __NoBlanks, [GCTonnes] )
VAR __NoBlanksMR =
    SUMX ( __NoBlanks, [MRTonnes] )
RETURN
    DIVIDE ( __NoBlanksGC, __NoBlanksMR )
Did I answer your question? Mark my post as a solution!

Proud to be a Datanaut!



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

5 REPLIES 5
Stachu
Community Champion
Community Champion

for the total neither the GC or MR are blank, so it just divides the values as they are

you need to first summarize per month, then filter out blanks, aggregate the result and only then divide, like this (adjust the Calendar[Month] to whatever your date dimension is)

F1_Tonnes =
VAR __PerMonth =
    ADDCOLUMNS (
        SUMMARIZE ( 'Calendar', 'Calendar'[Month] ),
        "GCTonnes", [GC_Tonnes],
        "MRTonnes", [MR_Tonnes]
    )
VAR __NoBlanks =
    FILTER ( __PerMonth, [GCTonnes] <> BLANK () && [MRTonnes] <> BLANK () )
VAR __NoBlanksGC =
    SUMX ( __NoBlanks, [GCTonnes] )
VAR __NoBlanksMR =
    SUMX ( __NoBlanks, [MRTonnes] )
RETURN
    DIVIDE ( __NoBlanksGC, __NoBlanksMR )
Did I answer your question? Mark my post as a solution!

Proud to be a Datanaut!



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Hi @Stachu 

 

Your solution got me thinking about filtering the dates on my graph ( or only showing information when the graph is plotted) - I will post this on a seperate new post and tag you in it that is no problem ?

 

Cheers

 

Manfred

not at all, go for it



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

@Stachu 

Mate, you're a legend!  Thank you - you have made my Monday and it works! 

 

2019-07-29_11-25-12.jpg

glad to help Smiley Happy



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors