Forum Discussion
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
No, it didn't resolve but convinced my client to choose to other way.
Thanks for reaching out.
7 Replies
- kunal15sepFrequent 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
- damit23183
Microsoft Employee
Hi Kunal,
Thank you for your response.
Just a quick question on DAX you have provided;
In Return statement, is it % or / ? Because how come % will work?
Thanks
- kunal15sepFrequent Visitor
I meant MOD(_weeknum,2).
Please check the documentation here:
- v-xiaotang
Community 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
Microsoft Employee
No, it didn't resolve but convinced my client to choose to other way.
Thanks for reaching out.
- AnonymousNot 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!