Forum Discussion
Stharwani
Advocate II
8 years agoDax: convert monthly data to weeks
Hi team,
I am using this formula to show week number Weeks = ROUNDDOWN(('Date'[Date] - 'Date'[StartOfFY]+2)/7,0)+1
When I try to show it along with months on a bar chart, the shared week appears twice. Is there any way to change this so it only appears once?
Thanks,
Sonali
4 Replies
- DAX0110
Resolver V
Hi Stharwani, the approach I'd suggest is to create another calculated column that computes the MAX(Month) for each Weeks value, then put that MAX(Month) column on the chart together with Weeks.
On the other hand, if you want to "snap" each Weeks value to the lower of the two months, use MIN(Month)
- Stharwani
Advocate II
No, that did not work.
- Stharwani
Advocate II
Any ideas ImkeF MattAllington
Thanks.