Hi!
I have a countdown for our warranty cases, which needs to be completed in the 45 days or less. Our customer fills out the Form, and the countdown stars when the Form is submitted.
So the first field is "Form date"
DATETIME_FORMAT(CREATED_TIME(), 'D. M. YYYY')
The second field is "Days"
DATETIME_DIFF(TODAY(), {Form date}, 'days')
And the third field is "Countdown"
45-{Days}
This works fine, but the problem is, that when the status is "sent" or "refund" the countdown don't stop. So the point is, that I want to know how long one case was open. I can also use just one status, let's say "complete" but now I stumble upon one problem.
I don't have a specific date field for the end of the case (it depends on the case - some wants refund, some wants exchange or repair). So in this case I have two date fields (date of a refund and date of a shipment). So it's little complicated.
Hope someone knows the anser to my problem. 🙂
Have a nice day!