Calculate Age by Current Year Deluge
Calculate Age by Current Year Deluge
# Tips of the day
Calculate the Age from the current year
Birthday = "10-Jan-2006".toDate();
age = zoho.currentdate.getYear() - Birthday.getYear();
if(age >= 18)
{
info "Approve";
}
else
{
info "Under Age";
}