Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DatePart ( interval, date, [firstdayofweek], [firstweekofyear])
[b]Fourth Argument[/b]
vbUseSystem 0
vbFirstJan1 1
vbFirstFourDays 2
vbFirstFullWeek 3
[b]vbSunday = 1[/b]
Format(#2006-08-13#,"ww",1,0) ==> 33
Format(#2006-08-13#,"ww",1,1) ==> 33
Format(#2006-08-13#,"ww",1,2) ==> 33
Format(#2006-08-13#,"ww",1,3) ==> 33
[b]vbMonday = 2[/b]
Format(#2006-08-13#,"ww",2,0) ==> 33
Format(#2006-08-13#,"ww",2,1) ==> 33
Format(#2006-08-13#,"ww",2,2) ==> 32
Format(#2006-08-13#,"ww",2,3) ==> 32