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
Solved! Go to Solution.
No, it didn't resolve but convinced my client to choose to other way.
Thanks for reaching out.
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.
No, it didn't resolve but convinced my client to choose to other way.
Thanks for reaching out.
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
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
I meant MOD(_weeknum,2).
Please check the documentation here:
Thanks for your response.
Well it didnt work though. I convinced them to choose another solution.
Thanks
User | Count |
---|---|
200 | |
87 | |
76 | |
75 | |
56 |
User | Count |
---|---|
172 | |
100 | |
83 | |
79 | |
73 |