Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Is there any way to show multiple metrics by single filter. Eg. I have to show spends, previous spends, spends difference under one filter of spends category. If i select spend then previous spends and spends difference also shows in the table.
Solved! Go to Solution.
Hi @Harish_Kumar ,
Based on your problems, here are my answers.
I create a table at first.
Then I create three measures.
Spends = SUM('Table'[Spend])
Previous Spends =
CALCULATE ( SUM ( 'Table'[Spend] ), PREVIOUSMONTH ( 'Table'[Date] ) )
Spends Difference = 'Table'[Spends] - 'Table'[Previous Spends]
Next select the slicer visual and let Spend in.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Harish_Kumar ,
Based on your problems, here are my answers.
I create a table at first.
Then I create three measures.
Spends = SUM('Table'[Spend])
Previous Spends =
CALCULATE ( SUM ( 'Table'[Spend] ), PREVIOUSMONTH ( 'Table'[Date] ) )
Spends Difference = 'Table'[Spends] - 'Table'[Previous Spends]
Next select the slicer visual and let Spend in.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.