Hello,
I am working on an Engineering Support Request App. When the user submits a new request form, the date they created the request is captured by the Created column and I entered the following formula into the "Needed By" date picker control.
If(frmNewRequest.Mode = FormMode.New, DateAdd(Today(), 30), Parent.Default)
I have a number of other date pickers in the app for the assigned engineers to use. Since they are all tied to the ID of the existing request, I can't really use the FormMode.New logic. Examples include the date the work actually begins and the completion date. Other date picker controls may never be utilized such as "Date Placed on Hold" and "Cancellation Date". I want all of the date pickers to default to Today's date (versus 2001), but if I use Today(), the form won't retain any dates our engineers intentionally pick. How do I write an If statement for an Edit form that will address these needs?
Thanks in advance for your help,
Teresa