Forum Discussion

damit23183's avatar
damit23183
Icon for Microsoft Employee rankMicrosoft Employee
3 years ago
Solved

Display Alternate week number only

Hi,

 

I am working on column chart where I would like to only show alternate week number in graph,

 

I have this now;

However, I would like to see like this;

As you see I dont want to show higlighted week number, however all column should be there with values in it. Only want to hide higlighted week number on x-axis otherwise everything should be same.

 

NOTE FYI: This stack column chart.

I tried with ISEVEN and ISODD based on week number but didnt work.

 

 

Thanks

 

  • damit23183's avatar
    damit23183
    3 years ago

    No, it didn't resolve but convinced my client to choose to other way.

    Thanks for reaching out.

7 Replies

  • kunal15sep's avatar
    kunal15sep
    Frequent Visitor

    Add a calculated column:

     

    var _weeknum= WEEKNUM(DATE[DATE])

     

    RETURN

    IF(_weeknum%2==1,1,0)

     

    Use desire weeknum in visual filter of the chart

  • v-xiaotang's avatar
    v-xiaotang
    Icon for Community Support rankCommunity Support

    Hi damit23183 

    Thanks for reaching out to us.

    I just want to confirm if you resolved this issue? If yes, you can accept the answer helpful as the solution or share you method and accept it as solution, thanks for your contribution to improve Power BI.

    If you need more help, please let me know.

     

    Best Regards,

    Community Support Team _Tang

    If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

    • damit23183's avatar
      damit23183
      Icon for Microsoft Employee rankMicrosoft Employee

      No, it didn't resolve but convinced my client to choose to other way.

      Thanks for reaching out.

      • Anonymous's avatar
        Anonymous
        Not applicable

        Hello!

         

        I am wondering how you displayed the weeks by date. I found the week numbers, but my client would like this in an easier to read format. What formula did you use to display the weeks with month and first date of the week? As you have in your graph. 

         

        Thanks!