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?
Hi @ovonel
It seems ALLEXCEPT is enough. It can remove filters except for the specified column filters. How about using below code?
CALCULATE (
[Revenue],
ALLEXCEPT ( ClientType, ClientType[FiscalYear] ),
DATESYTD ( DATEADD ( 'Date'[Date], -1, YEAR ), "5/31" )
)
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Based on your description
=
CALCULATE(
[Revenue],
DATESYTD( DATEADD( 'Date'[Date], -1, YEAR ), "5/31" ),
ALLSELECTED( ClientType ),
VALUES( ClientType[FiscalYear] )
)
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is beyond their comprehension! |
DAX is simple, but NOT EASY! |
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
224 | |
58 | |
49 | |
48 | |
46 |
User | Count |
---|---|
276 | |
211 | |
113 | |
83 | |
71 |