Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi All,
I have the following business case, please help me to solve it.
I would like to create a dimension (x axis for example in a line chart) and show each weeknumber inside the month.
Number of the weeks should have to restart in every month.
I have a date field like 2017.01.02 (YYYY.MM.DD)
I would like to get, for example 201701W1 201701W2 201701W3 .... 201702W1 ...201702W4.....201703W1.
Thanks,
Daniel
Solved! Go to Solution.
Hi @DanielDArtist,
You can try to use below formula to show the formatted date.
Calculate column:
Week = FORMAT([Date],"yyyymm")&"W"&WEEKNUM([date],1)-WEEKNUM(DATE([date].[Year],[date].[MonthNo],1),1)+1
Regards,
Xiaoxin Sheng
Hi @DanielDArtist,
You can try to use below formula to show the formatted date.
Calculate column:
Week = FORMAT([Date],"yyyymm")&"W"&WEEKNUM([date],1)-WEEKNUM(DATE([date].[Year],[date].[MonthNo],1),1)+1
Regards,
Xiaoxin Sheng
The DAX formula you need is: Year([Date])&FORMAT([Date],"MM")&WEEKNUM([Date],2)
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 46 | |
| 34 | |
| 27 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 59 | |
| 58 | |
| 39 | |
| 22 | |
| 20 |