Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Solved! Go to Solution.
Hi @tosuns
Use DAX functions to create a new table (Modeling->new table)
Table = ADDCOLUMNS(CALENDAR(DATE(2019,1,1),DATE(2019,12,31)),"YEAR",YEAR([Date]),"WEEKNUM",WEEKNUM([Date],2))
In this table , add a column
week.year = IF([WEEKNUM]<10,0&[WEEKNUM]&"."&[YEAR],[WEEKNUM]&"."&[YEAR])
Cretae many to many relationship
Add date from this table to a slicer
select relative slicer
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @tosuns
Use DAX functions to create a new table (Modeling->new table)
Table = ADDCOLUMNS(CALENDAR(DATE(2019,1,1),DATE(2019,12,31)),"YEAR",YEAR([Date]),"WEEKNUM",WEEKNUM([Date],2))
In this table , add a column
week.year = IF([WEEKNUM]<10,0&[WEEKNUM]&"."&[YEAR],[WEEKNUM]&"."&[YEAR])
Cretae many to many relationship
Add date from this table to a slicer
select relative slicer
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 38 | |
| 31 | |
| 30 |