Forum Discussion
ctedesco3307
4 years agoResolver II
Weekly Date Calculation
In the calendar table structure below the Billing Friday column is meant to identify the friday of that week the Date falls on, for billing cycle purposes.... What I need it to do is choose the p...
- 4 years ago
Try this and tell me
TTDate = ADDCOLUMNS( CALENDAR(date(2021,1,1), date(2022,12,31)), "Month", FORMAT([Date],"mmm YY"), "Year",YEAR([Date]), "Week", WEEKNUM([Date]), "WeekDay", WEEKDAY ( [Date], 1 ), "Billing Friday", VAR DayNumber = WEEKDAY ( [Date], 1 ) RETURN IF(DayNumber = 7,[Date] - 1, [Date] + 6 - DayNumber) )
ctedesco3307
4 years agoResolver II
freginier - This was perfect! Thank you