Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
WeekDayName(DayOfWeek(
//check for current year is leap and birthday is 2/29
if remainder(Year(CurrentDate),4)=0 and
Month({BirthdayField})=2 and
Day({BirthdayField})=29 then
Date(Year(CurrentDate),Month({BirthdayField}), day({BirthdayField})) else
//current year = leap year and birthdays in a non-leap year
If Month({BirthdayField})=2 and Day({BirthdayField})=29 then Date(Year(CurrentDate),Month({BirthdayField}), 28) else
//all other birthdays
Date(Year(CurrentDate),Month({BirthdayField}), day({BirthdayField}))
))