Forum Discussion
MarkShnier__You
Qrew Legend
6 years agoI'm not sure i 100% understand the issue, but if you want to re categorize the date or the time that a certain timestamp is done, like the edge case of midnight, then you can make a formula field mirror to adjust by formula to 11:59 and based your summary fields on that artificial field.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
markshnier2@gmail.com
------------------------------
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
markshnier2@gmail.com
------------------------------
DavidIsely
5 years agoQrew Member
I want to span midnight for a duration. The duration needs to have the date from the first day but allow total minutes to add for the start time before midnight to the stop time after midnight. I have 2 "time of day" fields to capture the start and stop times and then a duration formula to calculate the total time. This works perfectly until a time spans midnight and then I get a negative number. Do you have any suggestions?
------------------------------
David Isely
------------------------------
------------------------------
David Isely
------------------------------
- MarkShnier__You5 years ago
Qrew Legend
not tested by try this
var duration DurationRaw = [TOD End] - [TOD Start];
IF($DurationRaw > Minutes(0), $DurationRaw, Hours(24) + $DurationRaw)
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- DavidIsely5 years agoQrew MemberWorked like a charm thank you kindly sir!
------------------------------
David Isely
------------------------------