Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
DanduMani104
Helper III
Helper III

DAX function

I have append table of 2022 and 2023 years from week 25 to week 31 and had column of Tour request number a as appended table ,but I want to show only week 31 data of 2023 and same period in last year of 2022 by sales offices and Y axis should contain no of tour request number in clustered column chart in power bi. what should I do to prepare clustered column chart.

 

Which DAX function Should I use to do this. The below chart is from EXCEl..I want do same in power bi desktop

 

DanduMani104_1-1696397982622.png

Plese Hep me

4 REPLIES 4
Sandhya1234
Helper II
Helper II

 

Make sure you have separate date/week table with Year, Week , YearWeek (YYYYWW) 

 

 

Have column like this in Date/week Table 

Week Rank = RANKX('Date','Date'[Year Week],,ASC,Dense)  //YYYYWW format

 

 

These measures can help
This Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))
Last Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])-1))

 

Last Year  Same Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year])-1 && 'Date'[Week]  = Max('Date'[Week])))

 

 

With date table you can also use

 

week Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-364,DAY))  

 

Power BI — Week on Week and WTD   
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8
  Time Intelligence, Part of learn Power BI 
https://youtu.be/cN8AO3_vmlY?t=27510

 

Power BI — WTD Questions— Time Intelligence 4–5

In this blog, we will try to answer, 10 Most Frequently Asked Questions on Week Till Date(WTD) in Power BI.

DanduMani104
Helper III
Helper III

No its not working ,

I have append table of 2022 and 2023 years week wise ,but I want to show only week 31 data of 2023 and same period in last year of 2022 by sales offices should be on X axis and Y axis should contain no of tour request number and Legend field should contain year column in clustered column chart in power bi without filtering data. what should I do to prepare clustered column chart. which  DAX function shoud I use

 

Make sure you have separate date/week table with Year, Week , YearWeek (YYYYWW) 

 

Have column like this in Date/week Table 

Week Rank = RANKX('Date','Date'[Year Week],,ASC,Dense)  //YYYYWW format

 

These measures can help
This Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))
Last Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])-1))

 

Last Year  Same Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year])-1 && 'Date'[Week]  = Max('Date'[Week])))

 

 

With date table you can also use

 

week Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-364,DAY))  

 

Power BI — Week on Week and WTD   
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8
  Time Intelligence, Part of learn Power BI 
https://youtu.be/cN8AO3_vmlY?t=27510

 

 

Sandhya1234
Helper II
Helper II

@DanduMani104 Please try this measure. 

SameperiodLast Year = CALCULATE(Sum[Sales], DATEADD('Date', -1, YEAR)

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.