How to get the monthly data into weekly by week number

here in X axis its in month no. but i need to show in week no. like Week 1, week 2 etc

Hello @Hemant_rangdal - You need to include the Week Number column in your dataset. if your dataset granularity allows you to aggregate the data at a Week Level then you can easily create that “Week Number” column and project that in the X - Axis instead of the Month Number. Hope this helps!

2 Likes

dateDiff(truncDate(“WK”, truncDate(‘YYYY’, {order_date})), {order_date}, ‘WK’)+1
correct??

Hello @Hemant_rangdal - Yes, it would be something like this. There’s already a very good thread on these type of calculations. You can refer to that. Hope this helps!

Did my suggestion help you in resolving your query? If yes, would request you to mark the post as “Solution”. This will help the community to find guidance and answers to similar question. Thank you!

2 Likes