I have a dynamic pdf form in which a table cell1 is Enter DOB and aother Cell2 Calculate age by Javascript calculation.
When applicant is more than one then addrow by click Button and a new row add but in new cell age calculation cell2 is show old result.
Please help me to modify this javascript so that it will work add row button.
const _MS_PER_DAY = 1000 * 60 * 60 * 24;
const _DAYS_TO_MONTH = 4800 / 146097; // 400 years have 146097 days and 400 years have 4800 months
const _MONTH_TO_DAYS = 146097 / 4800;
var date = util.scand("yyyy-mm-dd", Table8.Row1.Cell2.rawValue);
var now = new Date();
var days = Math.ceil((now - date) / _MS_PER_DAY);
var monthsFromDays = Math.floor(days * _DAYS_TO_MONTH);
var months = monthsFromDays;
days -= Math.ceil(monthsFromDays * _MONTH_TO_DAYS);
var years = Math.floor(months / 12);
months %= 12;
var result = [];
if (years > 1)
result.push(years + " years");
if (years == 1)
result.push(years + " year");
if (months > 1)
result.push(months + " months");
if (months == 1)
result.push(months + " month");
if (days > 1)
result.push(days + " days");
if (days == 1)
result.push(days + " day");
this.rawValue = result.join(", ");