Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
HI all
I have an issue with one of my NPS formulas:
First I have a formula to get the average.
any suggestion? thanks,
Solved! Go to Solution.
The problem is that ALLEXCEPT is removing the filters from the expanded table, which presumably includes the date table. You can modify your code to
Client_Scores Event =
CALCULATE (
AVERAGE ( 'ResponsesFY25'[LTR - Event] ),
ALLEXCEPT ( 'ResponsesFY25', 'ResponsesFY25'[Client Account Name], 'Date'[FY] )
)
You will need to include in the ALLEXCEPT any columns in the date table which may be used to sort the fiscal year column, if it is not sorted by itself.
The problem is that ALLEXCEPT is removing the filters from the expanded table, which presumably includes the date table. You can modify your code to
Client_Scores Event =
CALCULATE (
AVERAGE ( 'ResponsesFY25'[LTR - Event] ),
ALLEXCEPT ( 'ResponsesFY25', 'ResponsesFY25'[Client Account Name], 'Date'[FY] )
)
You will need to include in the ALLEXCEPT any columns in the date table which may be used to sort the fiscal year column, if it is not sorted by itself.
User | Count |
---|---|
84 | |
76 | |
74 | |
48 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |