Forum Discussion
MarkShnier__You
Qrew Legend
Parsing Append Only Fields
so... if you have a text field set to Log Changes where the new entries act in the default manner which is to be at the bottom of the updates, here are some formuals to use to parse out the values from the most recent entry. I am also assuming that you are logging the date and not the date and time.
Most recent value (formula text field type)
Trim(Right([my update field],"]"))
Date of most recent update (this needs to be a formula date field)
ToDate(Left(Right([my update field],"["),9))
Who did the most recent update (formula text field type)
Trim(NotLeft(Left(Right([my update field],"["),"]"),9))
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
so... if you have a text field set to Log Changes where the new entries act in the default manner which is to be at the bottom of the updates, here are some formuals to use to parse out the values from the most recent entry. I am also assuming that you are logging the date and not the date and time.
Most recent value (formula text field type)
Trim(Right([my update field],"]"))
Date of most recent update (this needs to be a formula date field)
ToDate(Left(Right([my update field],"["),9))
Who did the most recent update (formula text field type)
Trim(NotLeft(Left(Right([my update field],"["),"]"),9))
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
BobFaulk
2 years agoQrew Member
Hi Mark, Thank you. The formula works but its returning the oldest note stamp instead of the most recent. Also I used this formula...
Trim(NotLeft(Left(Right([my update field],"["),"]"),9))
and it also cut off the date which is something I needed so I went to this and at least it gave me the date even though I still need the most recent entry but here it is...
Trim(Left(Right([Call Notes],"["),"]"))
What should I change to get the most recent?
------------------------------
Bob Faulk
------------------------------
Trim(NotLeft(Left(Right([my update field],"["),"]"),9))
and it also cut off the date which is something I needed so I went to this and at least it gave me the date even though I still need the most recent entry but here it is...
Trim(Left(Right([Call Notes],"["),"]"))
What should I change to get the most recent?
------------------------------
Bob Faulk
------------------------------
Related Content
- 17 days ago
- 12 months ago