Help

Non numerical result from TONOW()

1897 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Osh_Moz
4 - Data Explorer
4 - Data Explorer

Hello,

Just a quick question.
TONOW({Shipping Date}) should return a number of days according to the reference, but I get “a month” instead of integer result. Also, the formatting options are greyed out with “not an integer or date” error.
How can I get an integer response?

Thanks in advance.

1 Reply 1

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().)