Forum Discussion
ajisharavind_99
4 years agoAdvocate I
Week Number Sequence
Hi, I have dynamic Calendar Table starting from 07-Sep-2021 to 31-Jan-2023, I m looking for week number in sequence 1 to 73 (sample below). Any solution ??
- 4 years ago
You can add a new column as
Week num = QUOTIENT( 'Table'[Date] - DATE(2021, 9, 7), 7) + 1 - 4 years ago
Excellent :), Thanks alot johnt75
johnt75
4 years agoSuper User
You can add a new column as
Week num = QUOTIENT( 'Table'[Date] - DATE(2021, 9, 7), 7) + 1ajisharavind_99
4 years agoAdvocate I
Excellent :), Thanks alot johnt75