Forum Discussion
Weekyear ISO comparison
- Anonymous5 years ago
Hi noliverte ,
You can create a yearweek number like this
calendar = ADDCOLUMNS ( CALENDAR ( DATE ( 2015, 1, 1 ), TODAY () ), "yearweek", YEAR ( [Date] ) & "-" & WEEKNUM ( [Date] ), "sort", YEAR ( [Date] ) * 100 + WEEKNUM ( [Date] ) )For filtering the value you want, you could create a relationship between the calendar table and the main table.
The sort column is created to sort the yearweek colulmn.
After the above steps are completed, you can create a view to filter.
You can check more details from here.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi noliverte ,
You can create a yearweek number like this
calendar =
ADDCOLUMNS (
CALENDAR ( DATE ( 2015, 1, 1 ), TODAY () ),
"yearweek",
YEAR ( [Date] ) & "-"
& WEEKNUM ( [Date] ),
"sort",
YEAR ( [Date] ) * 100
+ WEEKNUM ( [Date] )
)
For filtering the value you want, you could create a relationship between the calendar table and the main table.
The sort column is created to sort the yearweek colulmn.
After the above steps are completed, you can create a view to filter.
You can check more details from here.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.