I'm busy creating another structure and since long time I wanted to apply the days-between formula again.
But it seems like I must have forgotten something.
My formula (in formula column):
IF DAYS_BETWEEN(datepicker,today()<5:
"Less than 5 days to go!"
I've a case with date picker = 29/01/2024 & today() = 17/12/2023
and there my formula returns "Less than 5 days to go!" ???
Does anyone see what I missed?
Additionally, I was wondering of Days_between could be combined:
IF (DAYS_BETWEEN(datepicker,today()<5 ) AND (IF DAYS_BETWEEN(datepicker,today()>0):"Oh no" ?
Kr,
Alexander
Hello @Alex Agn
A bracket seems to be missing from the formula and as Hana said above - the days_between function can return a negative value depending on which date comes first(you can switch their places in brackets if needed). If you want to combine both conditions, the formula can look like this:
IF DAYS_BETWEEN(datepicker,today())<5:
"Less than 5 days to go!" else
IF DAYS_BETWEEN(datepicker,today())<4 AND IF DAYS_BETWEEN(datepicker,today())>0:"Oh no"
I hope this helps. If you need further assistance, please reach out to us directly at our support portal and we'll get back to you shortly.
Best regards,
Stepan
Tempo (the Structure app vendor)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.