OriginalPostID-144093
Discussion posts and replies are publicly visible
I have created expression rule to calculate age (in year) based on birth date. Below is for reference, can be modified further to get month and days also:
if( month(today())>month(ri!dob), year(today())-year(ri!dob), if( month(today())<month(ri!dob), year(today())-year(ri!dob)-1, if(day(today())<day(ri!dob), year(today())-year(ri!dob)-1, year(today())-year(ri!dob) ) ))