Re: Date question with weeknumber
Re: Date question with weeknumber
- Subject: Re: Date question with weeknumber
- From: email@hidden
- Date: Fri, 23 Apr 2010 09:37:18 -0700
Try this:
set weekCount to 2
set startDate to (current date)
if startDate + (weekCount * weeks) > (current date) then
set year of startDate to ((year of startDate) + 1)
end if
set month of startDate to 1
set day of startDate to 1
set calculatedDate to startDate + (weekCount * weeks)
set whatDay to weekday of calculatedDate as integer
set toWed to 4 - whatDay
set WedDate to calculatedDate + (toWed * days)
set tueDate to WedDate + (6 * days)
return {WedDate, tueDate}
HTH,
ES
On Apr 23, 2010, at 1:38am, Bert Groeneveld wrote:
> Hello,
>
> At some point in my script I know a weeknumber, for example set myWeeknumber to "03", or set myWeeknumber to "52" (can be any weeknumber in the future).
> I want to find ou the date of the wednesday that falls in the week with weeknumber myWeeknumber (this will be my startDate).
> And I want to find out the date of the tuesday that falls in the week after the week with weeknumber myWeeknumber (this will be my endDate).
>
> The format of the startDate end endDate should be "23-04-2010" (23th of april of 2010).
>
> myWeeknumber is always a weeknumber in the future so when today falls in week 52 of a given (this) year and myWeeknumber is set to "2" or "02" then the startDate end the endDate fall in the next year of course.
>
> I was wondering if this can be done with Applescript and if yes, anyone would be so kind to post example code.
>
> Thanks for any help,
> Bert.
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> AppleScript-Users mailing list (email@hidden)
> Help/Unsubscribe/Update your Subscription:
> Archives: http://lists.apple.com/archives/applescript-users
>
> This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden