home *** CD-ROM | disk | FTP | other *** search
- *********
- * Function : BOW
- * By : Tom Rettig
- * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
- *
- * Syntax: BOW( <expD> )
- * Return: Date of the first Monday same as or preceding <expD>
- *********
-
-
- FUNCTION BOW
- PARAMETERS tr_date
- IF DOW(tr_date) = 1
- RETURN tr_date - 6
- ELSE
- RETURN tr_date - ( DOW(tr_date) - 2 )
- ENDIF
- * eofunc BOW
-
-
-