Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, i am trying to build a measure that calculates the total sales for the prior year of the user selected year i.e. if user selects 2021 sales, 2020 sales will show. So im trying to make it fairly dynamic.
My measure is correctly showing the sales amount, however when i add in the Region field, the values start to repeat. Im sure it has something to do with the FILTER ALL section, however im not sure what to substitute it with to make it work.
Any help much appreciated.
Order VALUE( Previous AY ) =
VAR previousYR = SELECTEDVALUE( Finance_Sales[AcademicYear].[Year], 0 ) -1
RETURN
CALCULATE(
[Net_Order_Value_(commit)],
FILTER(
ALL( Finance_Sales ),
Finance_Sales[AcademicYear].[Year] = previousYR
))
Solved! Go to Solution.
Hi @adam_macs
Can you share a sample of your data?
BTW, you did not use any time elements in the matrix, so try this:
Order VALUE( Previous AY ) =
VAR previousYR = SELECTEDVALUE( Finance_Sales[AcademicYear].[Year], 0 ) -1
RETURN
CALCULATE(
[Net_Order_Value_(commit)],
Finance_Sales[AcademicYear].[Year] = previousYR
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @adam_macs
Can you share a sample of your data?
BTW, you did not use any time elements in the matrix, so try this:
Order VALUE( Previous AY ) =
VAR previousYR = SELECTEDVALUE( Finance_Sales[AcademicYear].[Year], 0 ) -1
RETURN
CALCULATE(
[Net_Order_Value_(commit)],
Finance_Sales[AcademicYear].[Year] = previousYR
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |