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] )
)
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |