[ad_1]
Hello @majab44,
Thank you very much for using our plugin. Yes that’s possible.
For example, assuming the fieldname1 is a date field to allow users to select their birthdays, you only need to insert a calculated field in the form and enter the equation:
(function(){
let d = DATEDIFF(fieldname1, TODAY(), 'dd/mm/yyyy', 'y');
return CONCATENATE( d['years'], ' years, ', d['months'], ' months and ', d['days'], ' days');
})()Best regards.
