I want to format an accumulated time value as [DDD] HH:MM or [DDD] HH:MM:SS.
This is not a clock time, but the existing [DD] format assumes that so it interprets it based on a date.
I just want the hours to show up as modulo 24 and the Days portion to show how may integer 24 hour intervals there are. Is it possible?
Note,
adding [DD] to a time format results in the calendar date being shown, which in my case is interpreted as slightly past the epoch (i.e. pre-1900),
and if I use [DDD] as a hint that I don’t want the two-digit calendar date the result is the day of the week in shorthand (i.e. Sun, Mon, …)
and if I use [DDDD] I get the day of the week in longhand (i.e. Sunday, Monday, …).
That is clever, but not what I am looking for.