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.
I am trying to build the measure:
CALCULATE([Revenue] ,
DATESYTD(dateadd('Date'[Date],-1,Year),"5/31"),
ALLSELECTED(ALLEXCEPT ( ClientType, ClientType[FiscalYear] ))
)
Unfortunately ALLSELECTED is not allowed nested with an ALLEXCEPT.
How can I achieve this?
You may try this:
MyMeasure =
CALCULATE (
[Revenue],
DATESYTD ( DATEADD ( 'Date'[Date], -1, YEAR ), "5/31" ),
REMOVEFILTERS ( Table[X] ),
ALLSELECTED ( ClientType[FiscalYear] )
)
Where Table[X] is where you want to remove outside filters.
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
32 | |
13 | |
10 | |
10 | |
9 |