Forum Discussion
BobFaulk
Qrew Member
Just figured it out...
Trim(Left([my update field],"]"))
Thanks again!
------------------------------
Bob Faulk
------------------------------
Trim(Left([my update field],"]"))
Thanks again!
------------------------------
Bob Faulk
------------------------------
BobFaulk
2 years agoQrew Member
I have another question...How to I take that date I extracted and now turn it into the number of days from that last contact to today?
------------------------------
Bob Faulk
------------------------------
------------------------------
Bob Faulk
------------------------------
- DonLarson2 years agoQrew CommanderBob,
You need a Duration field
Today()-[Calculated Note Date]
Then make it display as Days in the format section
------------------------------
Don Larson
------------------------------- BobFaulk2 years agoQrew MemberSo if I add that to my formula...
Trim(Left([my update field],"]"))
What does that look like?
------------------------------
Bob Faulk
------------------------------- MarkShnier__You2 years agoQrew Legendthe 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
------------------------------
Related Content
- 17 days ago
- 12 months ago