devxlogo

EasterDate – Evaluate the date of Easter for a given year

' Evaluate the Easter date for a given yearFunction EasterDate(ByVal Year As Integer) As Date    Dim G As Integer    Dim C As Integer    Dim H As Integer    Dim i As Integer    Dim j As Integer    Dim L As Integer    Dim Month As Integer    Dim Day As Integer    G = Year Mod 19    C = Year  100    H = ((C - (C  4) - ((8 * C + 13)  25) + (19 * G) + 15) Mod 30)    i = H - ((H  28) * (1 - (H  28) * (29  (H + 1)) * ((21 - G)  11)))    j = ((Year + (Year  4) + i + 2 - C + (C  4)) Mod 7)    L = i - j    Month = 3 + ((L + 40)  44)    Day = L + 28 - (31 * (Month  4))    EasterDate = DateSerial(Year, Month, Day)End Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Engineering Leaders Spot Weak Proposals

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.