In Numbers count specific month/day occurences between two dates
Numbers for iOS question. I have a need to count the number of times a specific month & day occur within a date range. I found a similar question but it was different in that it used a fixed frequency such as 5 days which is straightforward. Leap years prevent that concept in my scenario.
Here are my rules.
Start date occurs before end date.
User provides a date which the specific month and day are derived from.
The count includes the start and end dates.
Leap years can’t break it.
User might enter a date outside of start/end so should return 0.
All help appreciated.
TNzooKeeper