The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I`m trying to create a sum using CALCULATE that ignores filters from a certain column (a certain slicer) but I also need to identtify a filter from other column within the CALCULATE.
What I have now:
Measure=
Solved! Go to Solution.
Hi @Anonymous
you can use both
=
CALCULATE (
SUM ( 'view'[Value] ),
KEEPFILTERS ( 'view'[Y/N] = "Y" ),
ALL ( 'view'[YEAR] )
)
Hi @Anonymous
you can use both
=
CALCULATE (
SUM ( 'view'[Value] ),
KEEPFILTERS ( 'view'[Y/N] = "Y" ),
ALL ( 'view'[YEAR] )
)