Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Dear all,'
I have an issue trying to calculate the difference between 2 entities using 2 slicers.
database: table with 4 entities with associated amounts.
d_entity: table with entity description and hierarchy
d_entity_bis: reference of d_entity
I have 1 slicer based on d_entity and another based on d_entity_bis and I would like to substract the amount of entities selected with the first slicer by the amount of entities selected with the second slicer.
I tried this measure, but it did not work:
Diff = CALCULATE ( SUM ( Database[Amount] ); ALLSELECTED ( d_entity[entity_code] ) ) - CALCULATE ( SUM ( Database[Amount] ); ALLSELECTED ( d_entity_bis[entity_code] ) )
Any ideas ?
Here below the screenshot of my test case:
Solved! Go to Solution.
HI @Anonymous ,
In your scenario, we need to remove the relationship between these tables, then use the following DAx query:
Diff = CALCULATE ( SUM ( Database[Amount] ), FILTER ( ALL ( Database ), Database[Entity_code] IN ALLSELECTED ( d_entity[entity_code] ) ) ) - CALCULATE ( SUM ( Database[Amount] ), FILTER ( ALL ( Database ), Database[Entity_code] IN ALLSELECTED ( d_entity_bis[entity_code] ) ) )
The result will like below:
By the way, the custom visual hierarchy slicer has some problem, when I select the A and B, it will display the true data, but when I select the Grp_1, it will not display the true data.
Best Regards,
Teige
HI @Anonymous ,
In your scenario, we need to remove the relationship between these tables, then use the following DAx query:
Diff = CALCULATE ( SUM ( Database[Amount] ), FILTER ( ALL ( Database ), Database[Entity_code] IN ALLSELECTED ( d_entity[entity_code] ) ) ) - CALCULATE ( SUM ( Database[Amount] ), FILTER ( ALL ( Database ), Database[Entity_code] IN ALLSELECTED ( d_entity_bis[entity_code] ) ) )
The result will like below:
By the way, the custom visual hierarchy slicer has some problem, when I select the A and B, it will display the true data, but when I select the Grp_1, it will not display the true data.
Best Regards,
Teige