Testing for Date

ano

Senior Member
In HAI programming language, is there a way to test for the first Monday of a month (Labor Day) or last Monday of a Month (Memorial Day)?
 
I see how to test for a Monday and a Month, and a certain date, but not the first or last Monday of a month.
 
There is no direct way, but you can add a condition DAY LESS THAN 8 for first Monday of any month, and for the last Monday: DAY GREATER THAN (number of days in the month, like 31 for May, minus 7)
 
Back
Top