"...If you fall I will catch you, I will be waiting... time after time..." (Sorry, had to!)
Anyone see what i'm missing here?
Need to calculate the diff between varNowUTC and Timestamp + 24HRS UTC

Timestamp UTC: Self-explanatory
Timestamp + 24HRS UTC:
Text(
DateAdd(
DateTimeValue(ThisItem.timestamp), 24,Hours), "[$-en-US]yyyy-mm-dd hh:mm:ss")
varNowUTC: (bound to a 1 sec timer that keeps a "clock" of sorts running)
Text(varNow, DateTimeFormat.UTC)
Time Remaining:
Text(
Time(
0,
0,
DateDiff(
DateTimeValue(varNOWUTC.Text),
DateTimeValue('Timestamp+24HRSUTC'.Text),
Seconds
)
),
"[$-en-US]hh:mm:ss"
)It appears that somewhere, I'm losing UTC. Does the Time() function convert to Local?