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
Prabhu_MDU
Advocate I
Advocate I

Calculate subtotal based on multiple slicer

Dear Experts, 

 

Good Day, hope you are doing good. 

 

Ok, my requirement is quiet different or unusual, we are in a process of replicating the SSRS tabular reports in Power BI, most of the features were achieved and got stuck in this one, I am not that good in DAX, only the basic I know. so, let me come to the point

 

Requirement:

1) There are 5 slicers namely Group1,Group2,Group3,Group4,Group5

additional info about slicer >> all are single select slicers >> one slicer value will not be displayed in the other. >> Slicer colum is from an independent table which has "No Relationship" with any other data tables.

2) User will randomly select the values from each slicer >> based on this selection, I need to calculate the subtotal for a financial column

 

Sample Dataset and the Expected result as per the image below.

Prabhu_MDU_0-1624469911580.png

 

let me give you a brieff on the above image,

> I have taken the US population by state

> Added two slicer for example purpose
> Selected "Country" from Slicer#1 and "State" from Slicer#2

> As per the above selection, expected output is given on the right side  of the image. (coloured table)
I also created measure like this

Measeure = 

CALCULATE(
             SUM('Table'[Population]),
             FILTER(VALUES('Table'),
                       'Table'[Country]=MIN('Table'[Country]) ||
                       'Table'[State]=MIN('Table'[State])
                       )
                     )
                  )
 
but this measure is not working as expected, it is calculating the Sum based on "Country" it is not considering the "State". 
 
please suggest me where I am mistaking. 
 
any help is much appreciated. 
 
Thanks a lot, 
Prabhu




1 ACCEPTED SOLUTION

Hi, @Prabhu_MDU ;

You could try to change the measure as follows:

 

Payment =
CALCULATE (
    SUM ( [Payment] ),
    FILTER (
        'Table',
        [Company] = MAX ( Slicer1[Group1_Column] )
            && [External] = MAX ( Slicer2[Group2_Column] )
            && [Process Center] = MAX ( Slicer3[Group3_Column] )
            && [State Name] = MAX ( Slicer4[Group4_Column] )))

 

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
Prabhu_MDU
Advocate I
Advocate I

My humble apologies for the delay in reply.. (all the notification mails went in junk folder, extremely sorry about it). 

Hearty thanks for your great effort @v-yalanwu-msft  .. you are much closer to my requirement. but it is not exactly the same. (really sorry).. 
here is the power example for what I am looking for. 
good news is, I am able to bring the expected value using SWITCH. but it is too costly in performance it seems. taking lot of rendering time when I implement the same logic in the real time file. 
please download this sample pbix file and have a look, defenitely it can be easy to help me with this example file. 
I apologies if I am not clear in giving the requirement. 


looking forward to hear from you.. 

https://drive.google.com/file/d/1DzZH6kRiuMaLDDkplW86np4XpTGVJYq0/view?usp=sharing

v-yalanwu-msft
Community Support
Community Support

Hi, @Prabhu_MDU ;

According to your description, if you use table to show it ,you could create a measure to calculate sum of state, and create a flag to filter it ; if you use matrix to show it, you only create a flag measure to filter . 

Table:

a)create a measure to calculate  sum

Populationsum = CALCULATE(SUM([Population]),ALLEXCEPT('Table','Table'[Country ],'Table'[State]))

b)create a flag measure

flag = 
var _ccountry=SUMMARIZE('slicer',[Country ])
return IF(MAX([Country ]) in _ccountry||MAX([State])=MAX('slicer'[State]),1,0)

c)put flag measure into filter.

vyalanwumsft_0-1624935593223.png

The final output is shown below:

vyalanwumsft_1-1624935728011.png

Matrix:

a)create a flag measure

flag = var _ccountry=SUMMARIZE('slicer',[Country ])
return IF(MAX([Country ]) in _ccountry||MAX([State])=MAX('slicer'[State]),1,0)

b)put it into filter.

vyalanwumsft_0-1624935593223.png
The final output is shown below:

vyalanwumsft_2-1624935890874.png

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-yalanwu-msft , 

 

Thanks for your valuable reply and great effort. the solution is exactly what I am looking for, but in your (as per my sample data) example it is static, but in my real scenario it will be dynamic.

You have got the requirement exactly. but how the same can be achieved dynamically. thats the challenge I am facing.

 

I Cannot define directly as 

CALCULATE(SUM([Payment]) , ALLEXCEPT([Company],[External],[Process Center],[State Name]))

because the "ALLEXCEPT" columns will be selected by the user using the slicer. So, I need to say define it like this 

CALCULAT(SUM([Payment]) , ALLEXCEPT(
SELECTEDVALUE(Slicer1[Group1_Column])="Company",[Company],
SELECTEDVALUE(Slicer2[Group2_Column])="External",[External],
SELECTEDVALUE(Slicer3[Group3_Column])="Process Center",[Process Center],
SELECTEDVALUE(Slicer4[Group4_Column])="State Name",[State Name]))

(this is not the right measure, but the idea is the same), here it becomes dynamic based on the selected value from each slicer. I believe my description is even more elaborate for you.

 

Prabhu_MDU_0-1625071554120.png

 

In the above screenshort, there are totally 9 Columns, out of the 9, 8 will be given as a dropdown in slicers as shown in the image, each slicer value is from each different table and they are independent tables (no relationship created), the slicers are set to "Single Selection" mode "On", as per the user choice from dropdown in each slicers, we will get 4 columns, based on this 4 random columns, I need to calculate the sum of "Payment" the last column. please help me to fix this. 

Note: I am sorry, unable to attach the sample power Bi, 

Hi, @Prabhu_MDU ;

You could try to change the measure as follows:

 

Payment =
CALCULATE (
    SUM ( [Payment] ),
    FILTER (
        'Table',
        [Company] = MAX ( Slicer1[Group1_Column] )
            && [External] = MAX ( Slicer2[Group2_Column] )
            && [Process Center] = MAX ( Slicer3[Group3_Column] )
            && [State Name] = MAX ( Slicer4[Group4_Column] )))

 

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Prabhu_MDU , if you are using slicer on country and state which below to same tbale you are putting up filter, they are automatically filter with and (&&) without you doing that

 

'Table'[Country]=MIN('Table'[Country]) ||
'Table'[State]=MIN('Table'[State])

 

This just doing row context comparision 

 

 

with independent tables state and country or can work

 

Measeure =
CALCULATE(
SUM('Table'[Population]),
FILTER(('Table'),
'Table'[Country]=selectedvalue('Country'[Country]) ||
'Table'[State]=selectedvalue('State'[State])
)
)
)

 

Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

Hi @amitchandak , 

My hearrty thanks for your reply, 

This is working same as how my measure works, i.e it is not grouping the values from slicers which is treated as column here . I mean, it is not grouping the columns as like 
Sum(Population) GroupBy (Country,State). It is grouping all the columns, here as per the example Country,State,City,Sum(Population).

 

Please help me to fix this. 

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