Forum Discussion
NathanAllan2
5 years agoQrew Member
How would I do this based on the most recent completed status?
------------------------------
Nathan Allan
------------------------------
------------------------------
Nathan Allan
------------------------------
MarkShnier__You
Qrew Legend
5 years agoCan you post an example
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
------------------------------
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
------------------------------- MarkShnier__You5 years ago
Qrew Legend
I was in the mood for a puzzle
// change Completed to a vertical Pipe | character
// nothing special about the | but it is rarely used by users.
var text LogWithPipes = SearchAndReplace([Status], "Completed", "|");
var text RemoveAfterPipe= NotRight($LogWithPipes, "|");
var text CompletedEntry = Right($RemoveAfterPipe, "[");
var text DateAndTime = Left($CompletedEntry,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 MemberPerfect. Thanks a ton!
------------------------------
Nathan Allan
------------------------------