Re: FirstDayOfMonth problems

2001-01-02 Thread Jim McAtee
Gina, You're making just one mistake in your code. That's in using the function FirstDayOfMonth(). This function returns the ordinal day in the year, a number from 1 to 365 (or 366). When you then use the function DayOfWeek() on this number the results don't really have any meaning, since DayO

RE: FirstDayOfMonth problems

2001-01-02 Thread Jeremy Allen
Your code is doing what you tell it to Gina :) >first business day = #DateFormat(firstbusinessday,", dd, >")# *NOTE* (This should return Monday, >04/02/2001 but returns > Tuesday, 04/03/2001) > Okay what is going on here, you have 4/01/01 as your date up top. T