Forum Discussion
Graph deleting weeks without data
- 6 years ago
Hi Anonymous
the best practice to tasks like your is to create dimension calendar table. like
Calendar Table = CALENDARAUTO()then you need to add a calculated column in this Calendar Table
Week = FORMAT('Calendar Table'[Date], "YYYY-WW")then create relationships 'Calendar Table'[Date] - [Date]
then add 'Calendar Table'[Week] as Axis value
do not hesitate to give a kudo to useful posts and mark solutions as solution
Hi Anonymous
the best practice to tasks like your is to create dimension calendar table. like
Calendar Table = CALENDARAUTO()then you need to add a calculated column in this Calendar Table
Week = FORMAT('Calendar Table'[Date], "YYYY-WW")then create relationships 'Calendar Table'[Date] - [Date]
then add 'Calendar Table'[Week] as Axis value
do not hesitate to give a kudo to useful posts and mark solutions as solution
I will have to work through this as I have not tried this before. Thank you for the idea and it will likely make future iterations of date-related charts easier. Thank you for your reply! Dave in Memphis.