What is the date of Thanksgiving?

What is the date of Thanksgiving?

This code will help you to calculate the date of Thanksgiving for the current system year.


   
H NoMain
*,Procedure Prototype
D ThanksGiving    PR              D

P ThanksGiving    B                   Export
*,Procedure Interface
D ThanksGiving    PI              D
D DayOfWeek       S              2  0
D YrsPassed       S              4  0
D Nov1            S               D   datfmt(*ISO)
D ISO_Today       S               D   datfmt(*ISO)
D Thanksgiving    S               D   datfmt(*ISO)
D SatDay          S               D   datfmt(*ISO) inz(D'2003-10-04')

*,Make variable Nov1 the first day of November for the current year
C                   Time                    ISO_Today
C                   Eval      YrsPassed = %subdt(ISO_Today:*Y)-2000
C                   Eval      Nov1 = D'2000-11-01' + %years(YrsPassed)

*,DayOfWeek 1=Sunday, 2=Monday........
*,If 0 then it is Saturday, make it 7
C                   Eval      DayOfWeek = %rem(%diff(Nov1:SatDay:*D):7)
C                   If        DayOfWeek = 0
C                   Eval      DayOfWeek = 7
C                   EndIf

*,The following will take the first day of November
*,add the number of days to get the first Thursday
*,and then add 3 week to get the 4th Thursday.
C                   Select
*,Sun
C                   When      DayOfWeek = 1
C                   Eval      ThanksGiving = Nov1 + %days(4) + %days(21)
*,Mon
C                   When      DayOfWeek = 2
C                   Eval      ThanksGiving

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts including news, tips, and advice to help you do your job more efficiently and effectively. Stay informed on the hottest topics and biggest challenges faced by IT professionals working with iSeries products and services.

    By submitting your registration information to Search400.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of Search400.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

= Nov1 + %days(3) + %days(21) *,Tues C When DayOfWeek = 3 C Eval ThanksGiving = Nov1 + %days(2) + %days(21) *,Wed C When DayOfWeek = 4 C Eval ThanksGiving = Nov1 + %days(1) + %days(21) *,Thu C When DayOfWeek = 5 C Eval ThanksGiving = Nov1 + %days(21) *,Fri C When DayOfWeek = 6 C Eval ThanksGiving = Nov1 + %days(6) + %days(21) *,Sat C When DayOfWeek = 7 C Eval ThanksGiving = Nov1 + %days(5) + %days(21) C EndSL C Return ThanksGiving P ThanksGiving E

==================================
MORE INFORMATION ON THIS TOPIC
==================================

The Best Web Links: tips, tutorials and more.

Ask your programming questions--or help out your peers by answering them--in our live discussion forums.

Ask the Experts yourself: Our application development gurus are waiting to answer your programming questions.

This was first published in November 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.