I actually have this very thing in an app I built for another entity:
First, I built a report that displays "Birthdays (Next Month)", then I created a Quickbase Notification that sends the report to a specified user on the 15th day of each month.
The report is built off of the Birthday field (Formula Date) and an "Age (Now)" field (formula-numeric). "Birthdate" field below is a standard Date field.
Birthday Formula:
AdjustYear([Birthdate], [Age (Now)]+1)
Age Now Formula:
//AGE and decimal months
// replace the [DOB] field with your date of birth field
var date DOB = [Birthdate];
var number Years =
Year(Today())-Year($DOB)
-
If(
Month(Today())<Month($DOB)
or
(Month(Today())=Month($DOB) and Day(Today())<Day($DOB)),1,0);
var number MonthsDifference = Month(Today()) - Month($DOB) ;
var number Months = If($MonthsDifference >= 0, $MonthsDifference, 12 + $MonthsDifference);
Round($Years + $Months/12,0.1)
Hope this helps.
------------------------------
Ryan Buschmeyer
------------------------------