Easter
Easter ( theYear , method )
Easter custom function returns Julian, Orthodox, or Gregorian Easter dates for years 326 to 4000 (or 4099).
Year validation changes the year to the minimum year that can be calculated for the calendar method. Validation can be commented out in this code, but dates less than the minimum may not be accurate.
Easter for years 4001 to 4099 can be retrieved as text by un-commenting the code at the end of the function. Comment the subsequent FileMaker Date function line if you do this.
Parameters
- theYear – the 4 digit year for which the date of Easter is requested.
- method – a number to indicate the calendar used to calculate the Easter date ( 1 = Julian, 2 = Orthodox, and 3 = Gregorian). Defaults to 3 if blank or out of range.
Examples
- Easter ( 2012, 1 ) = 4/2/12
- Easter ( 2012, 2 ) = 4/15/12
- Easter ( 2012, 3 ) = 4/8/12
Method 1: ORIGINAL CALCULATION
From 326 AD, Easter Sunday was determined as the Sunday following the Paschal Full Moon (PFM) date for the year based on the Julian Calendar. PFM dates were made up of a simple cycle of 19 Julian calendar dates. This method returns a Julian calendar date, and applies for all years from 326 (The author’s last known use of the Julian calendar was in Greece in 1923).
Method 2: ORIGINAL CALCULATION converted to GREGORIAN CALENDAR
Same (original) calculation, also converts the Julian calendar date to the equivalent Gregorian calendar date. It applies for years 1583 to 4099. This method is currently used by Orthodox Churches.
Method 3: REVISED CALCULATION
This method calculates Easter Sunday as the Sunday following the Paschal Full Moon (PFM) date for the year based on the Gregorian Calendar. PFM dates are calculated from the relationship between the sun, moon & earth (as understood in 1582) using many 19 Gregorian calendar date cycles. This method was adopted from 1583 in Europe, 1753 in England and is currently used by Western churches.
Instrumental Gregorian calendar code enhancement by Phil Caulkin.
Code based on Ronald W. Mallen’s reasearch and Greg Mallen’s algorithm.
See http://www.gmarts.org/index.php?go=415.
Easter code: Copy the selected code (click on Select All to highlight all the code) to the clipboard and paste it into a newly created Custom Function. Download code as a text file from here.
Comments
Easter — No Comments
HTML tags allowed in your comment: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>