Forum Discussion
JordanMcAlister
5 years agoQrew Captain
you could make two variables then use an if function at the end to determine whether to use it.
something like:
var date CalcDate = [Date Created] + Days(10);
//^Calculates your Returned Due Date
var date CheckDate = (If($CalcDate > [Quarter End Date], [Quarter End Date], $CalcDate));
//^Checks to make sure CalcDate is on or before quarter end date
If([Checkbox]=true,null,$CheckDate)
//^if your checkbox is checked then it doesn't return anything, but if it isn't checked, it returns your returned due date or visa versa if its supposed to be the other way around
------------------------------
Jordan McAlister
------------------------------
something like:
var date CalcDate = [Date Created] + Days(10);
//^Calculates your Returned Due Date
var date CheckDate = (If($CalcDate > [Quarter End Date], [Quarter End Date], $CalcDate));
//^Checks to make sure CalcDate is on or before quarter end date
If([Checkbox]=true,null,$CheckDate)
//^if your checkbox is checked then it doesn't return anything, but if it isn't checked, it returns your returned due date or visa versa if its supposed to be the other way around
------------------------------
Jordan McAlister
------------------------------
- JoshBaker5 years agoQrew MemberHey Jordan,
Thank you for the below that all makes sense to me. The last item I wanted to see if there is a solution for is below.
We've made it past the quarter end date of 7/31/20. Once we update the quarter end date in the formula to a new date in the future (say 10/31/20) wouldn't this update all the prior records that had a due date populated and were then subsequently checked off as complete to a Null value?
I would like the system to populate the due date once and not update the date in the field once it's been checked off as complete. Hope that makes sense, if not I can provide a more detailed example.
Thanks for all your help!
------------------------------
Josh Baker
------------------------------- JordanMcAliste15 years agoQrew MemberI think I get what you're saying - how do you guys update your quarter end date? is there a formula field that auto generates that date?
------------------------------
Jordan McAlister
------------------------------- JoshBaker5 years agoQrew MemberThe plan was to just populate a date in the [Quarter End Date] spot you outlined below and manually update that four times a year in this one date formula field. Will this work?
Also, in terms of setting up the variables this is something I haven't done before. Do I make the variables directly in the date formula field or is this something I'd have to do separately outside of that field and then reference? If this isn't an easy answer, if you could point me to any articles discussing it in the support pages that would be appreciated.
Again, thank you for your help!
------------------------------
Josh Baker
------------------------------