Как добавить возраст в Notion

If you have a contact database in Notion and you store their date of birth, then you need a way to view upcoming birthdays. This video shows you a formula method you can use to do just that. Formulas used: dateBetween(now(), prop(“DOB“), “years“) : current age of a person dateAdd(prop(“DOB“), prop(“Age“) 1, “years“) : upcoming birthday date prop(“Age“) 1 : age at upcoming birthday Note: the formulas above do not show the birthday on it’s actual day. The formula below caters for this: if(dateBetween(dateAdd(prop(“DOB“), prop(“Age“), “years“), now(), “days“) == 0, dateAdd(prop(“DOB“), prop(“Age“), “years“), dateAdd(prop(“DOB“), prop(“Age“) 1, “years“)) Template link:
Back to Top