Forum Discussion
damit23183
Microsoft Employee
3 years agoDisplay 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 ...
- 3 years ago
No, it didn't resolve but convinced my client to choose to other way.
Thanks for reaching out.
kunal15sep
3 years agoFrequent 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