Re: New Folder with date
Re: New Folder with date
- Subject: Re: New Folder with date
- From: Emmanuel <email@hidden>
- Date: Fri, 6 Apr 2001 02:01:55 +0200
At 16:31 +0200 5/04/01, Stephen Wheeler (Saito) wrote:
>
set yy to year of aDate
>
set mm to month of aDate
>
set dd to day of aDate
>
But I want to return the month as a number and not a name.
Try:
copy aDate to b
set the month of b to January
set mm to ("0" & (1 + (aDate - b + 1314864) div 2629728))
HTH
Emmanuel