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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
KMcCarthy9
Helper IV
Helper IV

Week Number Showing Twice

Hello, I have a stacked column graph that I want the X axis to show the values by month/year and then drill down into week number. The visual I created does this but at times shows the same week number twice - when the 1st day of the month is in the middle of the week.  In my sample this happens at the end of April 2020, and beginning of May 2020, as well as a few other places. 

I created DAX that fixes the week number issue, however when I use it I am unable to show the values by month/year...it only shows them by month with values from both years aggrated into one month column for a specific month (ie, Feb 2019 and Feb 2020, are only showing as Feb). 

I want to be able to see values by year/month and then drill down to the week numbers but only have a week number showing once. 

 

I have included a sample .pbix file here: .pbix file 

Thank you! 

DAX that fixes week issue


eeknostr = 
FORMAT (
    YEAR ( Datetable[Date] - ( WEEKDAY ( Datetable[Date], 2 ) - 2 ) ),
    "0000")

& "-"
     & SWITCH (
        MONTH ( Datetable[Date] - ( WEEKDAY ( Datetable[Date], 2 )-2 ) ),
        1, "Jan-",
        2, "Feb-",
        3, "Mar-",
        4, "Apr-",
        5, "May-",
        6, "Jun-",
        7, "Jul-",
        8, "Aug-",
        9, "Sep-",
        10, "Oct-",
        11, "Nov-",
        12, "Dec-"
    )
    & FORMAT (
        WEEKNUM ( Datetable[Date] - ( WEEKDAY ( Datetable[Date], 2 ) - 2 ),1 ),
        "00"
    )

 

1 ACCEPTED SOLUTION
KMcCarthy9
Helper IV
Helper IV

I was able to solve this by creating this measure and just using the date hierarchy of it, instead of separately bringing in a month and week column. 

Week Start Date = DateTable[Date] - WEEKDAY(DateTable[Date],2) + 1

 

View solution in original post

3 REPLIES 3
KMcCarthy9
Helper IV
Helper IV

I was able to solve this by creating this measure and just using the date hierarchy of it, instead of separately bringing in a month and week column. 

Week Start Date = DateTable[Date] - WEEKDAY(DateTable[Date],2) + 1

 

amitchandak
Super User
Super User

@KMcCarthy9 , No access to file. I think this is because when expand show both month and week. Week split across month and it is shown twice.

@amitchandak Sorry about that. Try this file: .pbix file.

Is there a way to stop it from showing both the month and week number on drill down?

 

Thanks!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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