Determining the Sunday date of the third "full" weekend of a month

  • Thread starter Thread starter Bob
  • Start date Start date
Hi Bernd,

Sorry, I should have been more specific in my comment. While I am aware
that dates are just integers, I still do not understand how the FLOOR's
"Significance" parameter works when used with dates. Can you elaborate?

Thanks,
Bob
 
Hello Bob,

FLOOR(x,7) rounds x down to the next number divisible by 7. For non-
negative numbers it is the same as x-MOD(x,7). I just use it as a
short cut.

Regards,
Bernd
 
Back
Top