Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
amrutha_sathish
Contributor II
Contributor II

Weekday should start from Monday instead of Sunday

I have two fields in calendar weekday and [Week Date]. My requirement is -

My weekday should start with Monday instead of Sunday, Like wise it week date should also get vary - 

PS: [Week date] is made as follows -

[Week_Date_old] & '-' & Right(Year([MonthYear]),2) AS [Week date]

WeekDay Week Date
Sun W31 / 05-Aug-23
Mon W31 / 05-Aug-23
Tue W31 / 05-Aug-23
Wed W31 / 05-Aug-23
Thu W31 / 05-Aug-23
Fri W31 / 05-Aug-23
Sat W31 / 05-Aug-23
Labels (4)
1 Solution

Accepted Solutions
rubenmarin

Hi, at the begginig of a script there is a FirstWeekDay variable, if your scripts starts weeks on Sunday it should show as:

SET FirstWeekDay=6;

To make weeks start on mondays change it to:

SET FirstWeekDay=0;

 

View solution in original post

1 Reply
rubenmarin

Hi, at the begginig of a script there is a FirstWeekDay variable, if your scripts starts weeks on Sunday it should show as:

SET FirstWeekDay=6;

To make weeks start on mondays change it to:

SET FirstWeekDay=0;