If I retrieve a “week number” by way of formula such as the following (provided by a helpful Notes.net User):
tmpLastOf:= @Adjust( Date; 0; 0;
@Select( @Weekday(Date); 6; 5; 4; 3; 2; 1; 0 );0;0;0);
weeknum := @Integer( @If(tmpLastOf=“”;0;1+(tmpLastOf-@Date(@Year(tmpLastOf);1;1))/604800) );
Is there a way to figure out the date range or at least the “beginning date” to which this week number is referring?
An example would be,
Week 2 = Jan 07 2004-Jan 14 2004
or (would also be fine):
Week 2 = Jan 07 2004
Any idea on how to accomplish this?