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
Hi guys,
I have two excel sheets I wan't to see the % diff between.
Unfortunately they are both very different in the setup why I created some calculations.
However, for some reason my Quarter slicer changes my calculation to be smaller than it is.
See picture:
Can I make my slicer not affect Q1 but only AMOUNT?
Thanks,
PS: I can't create a Q1 calculation (summing Jan, Feb and March) from AMOUNT due to its format - I need the slicer.)
Solved! Go to Solution.
Hi @Doohand ,
To work on it by using REMOVEFILTERS.
Measure = CALCULATE(SUM('Table'[Duration (task hours)]),REMOVEFILTERS('date'[Date]))
Hi @Doohand ,
To work on it by using REMOVEFILTERS.
Measure = CALCULATE(SUM('Table'[Duration (task hours)]),REMOVEFILTERS('date'[Date]))
Hi @Doohand
Most probably is one of the relationships that is affecting the calculation.
You can use something like below considering you have a date dimension.
Measure 8 =
CALCULATE(
SUM( table[Q1] ),
ALL( date dimension table )
)
Hi @Mariusz
Thanks! Doesn't seem to work tho as Q1 is a measurement.
I am more interested in if I can make my slicer only focus on óne measurement in a table?
Thanks!
Hi @Doohand
Sure, however, your slicer column needs to be in a separate Table and your relationship inactive.
Then you can invoke it like below by use of USERELATIONSHIP function.
Value2 Afected =
CALCULATE(
SUM( 'Table'[Value2] ),
USERELATIONSHIP( Slicer[Quarter], 'Table'[Quarter] )
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 19 | |
| 14 | |
| 12 | |
| 10 | |
| 8 |