[ad_1]
Hello @lisi4ka
Thank you very much for using our plugin.
Assuming the fieldname1 is a number field with the number of days, you can insert a calculated field in the form and enter the equation:
GETDATETIMESTRING(DATETIMESUM(TODAY(), 'dd/mm/yyyy', fieldname1, 'd'), 'dd/mm/yyyy')The previous equation uses the TODAY() operation to get a date object with today’s date. The DATETIMESUM operation returns a date object as the result of summing the value of the fieldname1 field to today’s date. And finally, GETDATETIMESTRING transforms the date object into a text with a date format.
Best regards.
