Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |