Forum Discussion
BrianSeymour
3 years agoQrew Assistant Captain
Hey Julie,
It sounds like you'd need to another Date field the User can optionally fill out to override the default calculation. For example,
If (
// Was an override provided? If so, use it instead!
not IsNull([Date Override]),
[Date Override],
// Default to your existing two week logic
Today() + Days(14)
)
Hopefully that gives you some ideas!
------------------------------
Brian Seymour
------------------------------