Forum Discussion
MarkShnier__You
Qrew Legend
5 years agoIf the new entries are at the bottom of the list, then this formula for a date time formula field will parse out the date/time into a date/ time field type. You just need to edit the first line to put in your own [field name].
var text DateAndTime = Left(Right([append only with date /time],"["),18);
var date TheDate = ToDate(Left($DateAndTime," "));
var timeofday TheTime = ToTimeOfDay(NotLeft($DateAndTime,9));
ToTimestamp ($TheDate, $TheTime)
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
var text DateAndTime = Left(Right([append only with date /time],"["),18);
var date TheDate = ToDate(Left($DateAndTime," "));
var timeofday TheTime = ToTimeOfDay(NotLeft($DateAndTime,9));
ToTimestamp ($TheDate, $TheTime)
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- NathanAllan25 years agoQrew MemberHow would I do this based on the most recent completed status?
------------------------------
Nathan Allan
------------------------------- MarkShnier__You5 years ago
Qrew Legend
Can you post an example
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- NathanAllan25 years agoQrew MemberYes, here is an example. I'd like to capture the date from the most recent log that says completed so Nov-10-20 12:40 PM instead of the one at 1:11 PM.
------------------------------
Nathan Allan
------------------------------