using a date 0 marker as of today.. and finding the dates that fall on a 45 day cycle..

this code will generate the dates that occure once every 45 days for the next 10, 45 day cycles.

you need the UDF's CTime() and FlipCTime()

Code:

$date0 = @date,@time
for $i = 1 to 10
? split(ctime(flipctime($date0[0],$date0[1]) + (86400*45)*$i))[0]
next



Bryce