Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am trying to create a comparison page. I would like to have 2 slicers which allow you to select 2 websites that you would like to compare. On the dashboard I will have a single metric, repeated for each site you select, I would then like to show a variance value in the middle of the two values to show the difference.
I have already tried to display the values for each site in cards and then use the edit interactions to connect the slicer to the correct card which works fine. The variance card, in an ideal world, I would like to take the value presented in each card and do the calculation, but it seems that PowerBI doesn't work in this way.
I am struggling to find a way to do this, I am fairly new to PowerBI, if anyone could point me in the right direction it would be appreciated.
Solved! Go to Solution.
Hi @Anonymous,
You can't use measure to compare difference between two slicer with same source.
In my opinion, you can duplicate a table with same records(not has relationship) and use new table as source of one slicer. then you can use measure to compare difference between two selections.
Diff =
CALCULATE ( SUM ( Table[Amount] ), ALLSELECTED ( Table[Column] ) )
- CALCULATE ( SUM ( NTable[Amount] ), ALLSELECTED ( NTable[Column] ) )
Regards,
Xiaoxin Sheng
Hi @Anonymous,
You can't use measure to compare difference between two slicer with same source.
In my opinion, you can duplicate a table with same records(not has relationship) and use new table as source of one slicer. then you can use measure to compare difference between two selections.
Diff =
CALCULATE ( SUM ( Table[Amount] ), ALLSELECTED ( Table[Column] ) )
- CALCULATE ( SUM ( NTable[Amount] ), ALLSELECTED ( NTable[Column] ) )
Regards,
Xiaoxin Sheng
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.