Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I am trying to create a table visualization with 3 columns
1. Week No
2. Current Year Weekly Sales
3. Previous Year Weekly Sales
I have a Date Table with Calendar Year and Week No Columns. Whenever I select an year in the dropdown filter I should see selected Year Week No, Selected Year weekly sales in one column and previous year weekly sales. Can anyone help me with the DAX query please?
I don't have the option to attach Pbix file. Kindly download the report I am working using below link
Solved! Go to Solution.
Hi @anilpoda ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) We can create two measures.
Current Year Weekly Sales =
CALCULATE (
SUM ( Fact_OrderLines[Value] ),
FILTER (
ALL ( Fact_OrderLines ),
YEAR ( [Order Date] ) = MAX ( 'Date'[Calendar Year] )
&& WEEKNUM ( Fact_OrderLines[Order Date] ) = MAX ( 'Date'[Week No] )
)
)
Previous Year Weekly Sales =
CALCULATE (
SUM ( Fact_OrderLines[Value] ),
FILTER (
ALL ( Fact_OrderLines ),
YEAR ( [Order Date] )
= MAX ( 'Date'[Calendar Year] ) - 1
&& WEEKNUM ( Fact_OrderLines[Order Date] ) = MAX ( 'Date'[Week No] )
)
)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @anilpoda ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) We can create two measures.
Current Year Weekly Sales =
CALCULATE (
SUM ( Fact_OrderLines[Value] ),
FILTER (
ALL ( Fact_OrderLines ),
YEAR ( [Order Date] ) = MAX ( 'Date'[Calendar Year] )
&& WEEKNUM ( Fact_OrderLines[Order Date] ) = MAX ( 'Date'[Week No] )
)
)
Previous Year Weekly Sales =
CALCULATE (
SUM ( Fact_OrderLines[Value] ),
FILTER (
ALL ( Fact_OrderLines ),
YEAR ( [Order Date] )
= MAX ( 'Date'[Calendar Year] ) - 1
&& WEEKNUM ( Fact_OrderLines[Order Date] ) = MAX ( 'Date'[Week No] )
)
)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |