When using the "Calculated Value" option in a SharePoint list on a Date Field, it shows as blank in a Nintex form, but shows correctly in the default SharePoint form.
Example
Column "date2":

SP form:

Same list, Nintex Form: 
Please advise!
When using the "Calculated Value" option in a SharePoint list on a Date Field, it shows as blank in a Nintex form, but shows correctly in the default SharePoint form.
Example
Column "date2":

SP form:

Same list, Nintex Form: 
Please advise!
Best answer by aaron_labiosa
The other way to do it would be via a bit of JavaScript:
var date = new Date();
date.setDate(date.getDate() + 7);
var control = NWF$("#"+ mydatecalccontrol); if(control.val() == ""){ control.val(date.getDate() + "/" + date.getMonth() + "/" + date.getFullYear()); }


Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.