How to determine Julian week of any date

  • Thread starter Thread starter 9 Iron
  • Start date Start date
9

9 Iron

Does anybody know how to determine the julian week of any
date, ie for example if today is 8/20/04, I would like a
return of the julian week like 34 (or whatever the
actually julian week is). Any help would be appreciated.
 
You can use the DatePart function: DatePart("ww", Date()).

You might want to check the Help, though, as there are a couple of
additional (optional) parameters you can supply to control how it calculates
the week number.
 
Back
Top