BobWeaver Posted July 3, 2003 Posted July 3, 2003 At Ugo's request I'm posting a link to this sample file: http://www.fmforums.com/threads/showthreaded.php?Cat=&Number=64213&page=&view=&sb=5&o=&vc=1 While you can use this to generate a multi-key on the fly, it wasn't really intended for that. For a multi-key, I recommend using the similar but simpler method in this thread: http://www.fmforums.com/threads/showflat.php?Cat=&Number=64912&page=2&view=collapsed&sb=5&o=186&fpart=1
Ugo DI LUCA Posted July 3, 2003 Posted July 3, 2003 Thanks Bob. In fact, I had downloaded version 2 without reading your intro about dates in numbers.... Both are kicking asses
BobWeaver Posted July 4, 2003 Author Posted July 4, 2003 One thing that I should mention is that the DateRange3.fp5 file won't handle the years 1900 and 2100 properly. Those are the quirky years in the Gregorian calendar that are divisible by 4 and 100, but not 400, which means that they are *not* leap years. I don't imagine it is likely to affect most users, but it can be fixed by changing the case statements in the DateList formula and StartIndex formula. It makes the formulae quite a bit more complex though.
Vaughan Posted July 4, 2003 Posted July 4, 2003 2000 was also a "quirky" year... hence the Y2K woes. Errrm, now that I read it again I think you my have meant the year 2400, not 2100. (2100 is not divisible by 400.) The year 2800 will also be problematic.
BobWeaver Posted July 4, 2003 Author Posted July 4, 2003 No, any year divisible 100 is not a leap year unless it is also divisible by 400. So, 2000 was a leap year, but 1900 and 2100 are not. What caused the confusion in 2000 aside from everyone concentrating on Y2K bugs was that while many programmers were aware that 1700, 1800 and 1900 were not leap years because they were divisible by 100, they weren't aware of the 'divisible by 400' exception and messed up on 2000. So a test for a leap year is: Mod(year,4)=0 and Mod(year,100)<>0 or Mod(year,400)=0
Lee Smith Posted July 4, 2003 Posted July 4, 2003 Hi Bob, Neither link is working. Not sure if the server is down, but I'll try again later and see. Lee
Lee Smith Posted July 4, 2003 Posted July 4, 2003 I'm sorry, I meant to say that the link was okay, it was that once you were there, the attachments wouldn't download. It takes you to a URL Not available page, that says, [color:"blue"] > Not Found > The requested URL /downloads/files/ was not found on this server. > > > Additionally, a 404 Not Found error was encountered while trying to use an > ErrorDocument to handle the request. > ------------------------------------------------------------------------ > Apache/1.3.26 Server at fmforums.com Port 80 Lee P.S. I just tried the first one again and got the same answer I got for Both of them this AM
BobWeaver Posted July 4, 2003 Author Posted July 4, 2003 Oh yeah. You're right. But I see that none of the files in this forum are downloading. I guess the server's taken off for the holiday. Happy J4 you loco Americanos!!
ernst Posted July 4, 2003 Posted July 4, 2003 I get the same as Lee, thread is there, but attachment not. Regards, Ernst.
Robert Schaub Posted July 4, 2003 Posted July 4, 2003 Ha 8-) Earlybird get the worms I already got the sample.
Recommended Posts