Forum Discussion
QuickBaseCoachD
Qrew Captain
if you want a zero, this this will work
Max(ToDays([Projected Launch Date] - Today()),0)
That way it will never go below zero.
But if you want null (blank) then it would be
var number Countdown = ToDays([Projected Launch Date] - Today());
IF($Countdown >0, $Countdown)
Max(ToDays([Projected Launch Date] - Today()),0)
That way it will never go below zero.
But if you want null (blank) then it would be
var number Countdown = ToDays([Projected Launch Date] - Today());
IF($Countdown >0, $Countdown)
ArchiveUser
7 years agoQrew Captain
Thanks - I'm really glad that I asked, since my solutions were not even close to what you have there (and also why they weren't working!). I do like the idea of the null, so I appreciate that suggestion, as well.