Forum Discussion
DonLarson
3 years agoQrew Elite
Bob,
You need a Duration field
Today()-[Calculated Note Date]
Then make it display as Days in the format section
------------------------------
Don Larson
------------------------------
You need a Duration field
Today()-[Calculated Note Date]
Then make it display as Days in the format section
------------------------------
Don Larson
------------------------------
BobFaulk
3 years agoQrew Member
So if I add that to my formula...
Trim(Left([my update field],"]"))
What does that look like?
------------------------------
Bob Faulk
------------------------------
Trim(Left([my update field],"]"))
What does that look like?
------------------------------
Bob Faulk
------------------------------
- MarkShnier__You3 years ago
Qrew Legend
the answer that I initially provided was professed with the comment that the newest entries are being logged at the bottom. If you have your field set to log the newest entries at the top then this is the formula for a formula date field type to extract the date.
ToDate(NotLeft(Left([append at top], " "),1))
If you are looking to know the integer number of days between Today and that extracted date, then you could make a formula numeric field with this formula.
Todays(
Today() - ToDate(NotLeft(Left([append at top], " "),1))
)
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------