I have a date field which I need to use a formula in Archer.
I need to set the current date on the field which I have called DateField when a user selects a value field, ValueField, and changes to the values "Pre-Approved" or "Approved" or "Updated" if it is before 7AM, if it is after 7AM it would show the next date.
Here's what I have so far:
IF(AND(ISEMPTY([DateField]),
"",
IF(AND(NOT(ISEMPTY([DateField])), [???]=VALUEOF([???],"False")),
DATEADD(DAY, 1, [ValueField]),
))