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

Calculate with filters

So I have a brain teaser (for me). 

I have a target value per month. And a turnover table. The turnover has multiple divisions. 

So made another table with divisions and a share.

I.e. D1 = 50% so a value of 0,5. Total of the values is 1 (100%)

 

What I want is when the user uses the filters to show the turnover for 1 division, that it will multiply the value of the target with the share of the selected division.

 

So if turnover is 20 million and the target was 18 Million, but the user will filter on only Division 1 (D1). Power BI will then use the sum of the selected division share (which is 0,5 int his case) to show the value of 9 Million. 

I somehow cannot find how I can make this work. 

The table with the share is a simple one:

DivisionShare
D10,5
D20,25
D30,25

 

I currently use this as a calculation: 

Selected Target = CALCULATE(SUM(Target[Target])) * CALCULATE(SUM(Divisions[Share]),ALLSELECTED(Turnover[Division]))
1 ACCEPTED SOLUTION
johnt75
Super User
Super User

From your code it looks like the filter is being placed on Turnover[Division] whereas it needs to be placed on 'Divisions'[Division]. If you can, create a one-to-many relationship from 'Divisions'[Division] to 'Turnover'[Division] and use that on the filter / slicer.

If you can't do that, you can try

Selected Target = CALCULATE(SUM(Target[Target])) * CALCULATE(SUM(Divisions[Share]), TREATAS( VALUES('Turnover'[Division]), 'Divisions'[Division])

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

From your code it looks like the filter is being placed on Turnover[Division] whereas it needs to be placed on 'Divisions'[Division]. If you can, create a one-to-many relationship from 'Divisions'[Division] to 'Turnover'[Division] and use that on the filter / slicer.

If you can't do that, you can try

Selected Target = CALCULATE(SUM(Target[Target])) * CALCULATE(SUM(Divisions[Share]), TREATAS( VALUES('Turnover'[Division]), 'Divisions'[Division])

You're a genius, that worked out perfectly. I am also glad you understood my explanation 🙂

 

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.