Disclaimer: This site is moderated by the Formidable Forms community. Formidable Forms and its parent company Strategy11 are not responsible for the words, opinions, and content posted by others on this site. This site is provided as a courtesy and free resource for the Formidable Forms Community. Any actions deemed as harassment, toxic or abusive, will result on being banned from this site and potentially losing your Formidable Forms license.
Thanks for your cooperation, if you have any questions please
consult our code of conduct
I have a similar problem. My app is collecting customer requests. Each request should be resolved within 3 days after submission. I have a Date field for calculating it. Ideally it would be something like:
Start date: [created_at]
Date difference: +3 days
Unfortunately this doesn't work.
Is there any other shortcode that represents created date?
I almost skipped answering your comment. This is a different problem and should be expressed as a new question. Please repost your question as a new issue so more eyes can get on it.
Created_at doesn't exist until the entry is saved so you can't use it in a default value calculation for new entries unless you calculate the due date in the frm_after_create_entry_hook. If you want to calculate a date 3 days from today, use currentdate +3 as the due date's default value.