The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
15 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
8 | |
8 |