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

Subtract count of each row with filter

Hi Everyone 

 

I have a column "A" that has a bunch of id's, i want to be able to count that column "A" with a specific filter from Column "B" , and group it by Column "C" is employee ID.  Example:

Table with B filter = 6 :  

A        B      C 

1         6      122

2         6     122 

3         6      122 

 

Result with initial count: 

 

A       B      C

3       6       122 

 

I then want to be able to subtract that information from column "A"   with the above filters and count 

by the same table but when my column "B" is set at a different filter. For example

 

A      B      C 

1       9      122 

2        9      122  

 

so with the count that would be:  A    B    C  

                                                      2     9     122 

My final desired result would be a subtraction of the count of column "A" with specific filter "B" = 6  

minus

count of column "A" with specific filter "B" = 9  

 

SO final answer is    

 

A       B      C

3       6       122 

-  

 

A      B      C 

2      9      122 

    

 

A      B      C 

1       ?        122  

 

B is my status filter, not sure what it would be in this case. 

 

I also want to be able to filter all the above info with my date table, to track it daily

Thanks for help in advance 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Melmehal  - I think you'll want to start by creating a disconnected parameter table. This means that the new table will have no relationship to the current table(s). It could be something like this:

Parameters = 
var B_Vals = DISTINCT('YourTable'[B])
return CROSSJOIN(
    SELECTCOLUMNS(B_Vals ,"Filter1",[B]),
    SELECTCOLUMNS(B_Vals ,"Filter2",[B])
)
 

Then, your measure:

 

Your Measure = 
var B1filter = SELECTEDVALUE('Parameters'[Filter1])
var B2filter = SELECTEDVALUE('Parameters'[Filter2])
var A1 = IF(ISBLANK(B1filter),0,CALCULATE(COUNTROWS('YourTable'), 'YourTable'[B] = B1filter))
var A2 = IF(ISBLANK(B2filter),0,CALCULATE(COUNTROWS('YourTable'), 'YourTable'[B] = B2filter))
return A1-A2

 

Hope this helps,

Nathan

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

@Melmehal  - I think you'll want to start by creating a disconnected parameter table. This means that the new table will have no relationship to the current table(s). It could be something like this:

Parameters = 
var B_Vals = DISTINCT('YourTable'[B])
return CROSSJOIN(
    SELECTCOLUMNS(B_Vals ,"Filter1",[B]),
    SELECTCOLUMNS(B_Vals ,"Filter2",[B])
)
 

Then, your measure:

 

Your Measure = 
var B1filter = SELECTEDVALUE('Parameters'[Filter1])
var B2filter = SELECTEDVALUE('Parameters'[Filter2])
var A1 = IF(ISBLANK(B1filter),0,CALCULATE(COUNTROWS('YourTable'), 'YourTable'[B] = B1filter))
var A2 = IF(ISBLANK(B2filter),0,CALCULATE(COUNTROWS('YourTable'), 'YourTable'[B] = B2filter))
return A1-A2

 

Hope this helps,

Nathan

 

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.