Forum Discussion
MarkShnier__You
Qrew Legend
Try this as a formula numeric field
ToDays([Date Closed] - ToDate([Date Created]))
But you probably want this better one to also show the running days open for unclosed cases.
var date EndDate = IF(IsNull([Date Closed]), Today(), [Date closed]);
ToDays($EndDate - ToDate([Date Created]))
You also have to think if you need to add 1 to the result. For example if a case was opened on Monday and it's now Tuesday has the case been open 1 day or 2. That's your call based on how your organization thinks.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
NicholeStebane
2 years agoQrew Member
I was able to get it to work!!! Thanks again for your help Mark! Being a newbie to building apps is much easier with your help!!
------------------------------
Nichole Stebane
------------------------------