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
Melmehal
Frequent Visitor

Count rows measure not counting total properly

Hi Power Bi Community, 

 

i created a measure that counts rows of when a "status" column = 5, and the same thing when the status = 9Capture9.PNG

I want to subtract the count of s5 from count of s9 so i created another measure called subtract. however sometimes the count of s5 is null and returns to me (0-1= -1). i created another measure with an if statement below: 

Measure = IF('quotelog (2)'[Count of S5]-'quotelog (2)'[Count of S9]=-1,0,'quotelog (2)'[Count of S5]-'quotelog (2)'[Count of S9]) 
 
it worked nicely: Capturef.PNG

but the totals are still the same... what i am trying to do is the following: 

 

Sum the count of s5 per employee BUT only subtract "count of s9" when count of s5 is not null.  so for alexi's case i would like the true sum of the column "measure" which is actually 1+0+1+1+1+0+1+1=6Capture88.PNG

 

1 ACCEPTED SOLUTION
mochabits
Helper II
Helper II

Hi @Melmehal , you can try this one:

 

1. Create a calculated column:

 

 

Counts_Col = 
var x = CALCULATE(COUNT(quotelog[status]), quotelog[status] = "S5", quotelog[quote] = EARLIER(quotelog[quote]))
var y = CALCULATE(COUNT(quotelog[status]), quotelog[status] = "S9", quotelog[quote] = EARLIER(quotelog[quote]))
return IF(ISBLANK(x),0,x-y)
 
 
2. Create a measure:
Total-S5&S9 = SUM(quotelog[Counts_Col])
 
 

View solution in original post

3 REPLIES 3
mochabits
Helper II
Helper II

Hi @Melmehal , you can try this one:

 

1. Create a calculated column:

 

 

Counts_Col = 
var x = CALCULATE(COUNT(quotelog[status]), quotelog[status] = "S5", quotelog[quote] = EARLIER(quotelog[quote]))
var y = CALCULATE(COUNT(quotelog[status]), quotelog[status] = "S9", quotelog[quote] = EARLIER(quotelog[quote]))
return IF(ISBLANK(x),0,x-y)
 
 
2. Create a measure:
Total-S5&S9 = SUM(quotelog[Counts_Col])
 
 
v-yuta-msft
Community Support
Community Support

@Melmehal ,

 

Could you please clarify more details and show the sample data and expected result?

 

Regards,

Jimmy Tao

Hi Jimmy, 

 

I just need the column called measure to sum up to 6 instead of 5

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.