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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Issue with SUMX including null values in formula

I have the following dataset that includes a date, a store ID, and a profit value for that month. One site has not compiled it's report yet for the time frame:

 

DateID

Profit

10/1/20191-25
10/1/2019224
10/1/201930
10/1/20194 
10/1/20195-1
11/1/2019134
11/1/2019214
11/1/201933
11/1/20194 
11/1/20195-5

 

My goal is to countthe number of sites in a given time period that are profitable. Profitable in this case is anything that is greater than or equal to 0. My current measure for this is as follows:

 

Positive Values = SUMX(
VALUES(Table[ID]),
IF(CALCULATE(SUM(Table[Profit])) >= 0, 1 , BLANK()))
 
Here's the expected values I should get with the measure given each time frame on a Date Slicer:

10/1/2019: 2
11/1/2019: 3
10/1/2019 - 11/1/2019: 3
 
However, the SUM formula is including the null values, giving me values of 3, 4, and 4, respectively. I'm not sure where to put the FILTER(ISBLANK(Table[Profit]) = FALSE) conditional in the measure to account for this. Anyone have any suggestions?
 
1 ACCEPTED SOLUTION
KHorseman
Community Champion
Community Champion

Positive Values = SUMX(
SUMMARIZE(

    FILTER(

        Table,

        NOT(ISBLANK(Table[Profit]))

    ),

    Table[ID]

),
IF(CALCULATE(SUM(Table[Profit])) >= 0, 1 , BLANK()))





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

Proud to be a Super User!




View solution in original post

2 REPLIES 2
KHorseman
Community Champion
Community Champion

Positive Values = SUMX(
SUMMARIZE(

    FILTER(

        Table,

        NOT(ISBLANK(Table[Profit]))

    ),

    Table[ID]

),
IF(CALCULATE(SUM(Table[Profit])) >= 0, 1 , BLANK()))





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

Proud to be a Super User!




Anonymous
Not applicable

Thank you very much! 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.