I believe TONOW()
returns a ‘friendly’ string – ‘a month,’ ‘12 days’ – rather than a numeric value. You probably want something along the lines of
DATETIME_DIFF({Shipping Date},NOW(),'d')
which will give you the number of days until (or since) {Shipping Date}
. (I can never remember whether Date1 or Date2 should be later to avoid a negative result, so you may need to swap them about – or just wrap the whole thing with ABS()
.)