Today's Date #14391
Unanswered
t1mmyn4t0r
asked this question in
Help
Today's Date
#14391
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Everyone,
I am new to Budibase and a total programming noob. I was able to figure out what a state is and make it work, but now i have encountered a filter issue. I made an app with appsheet recently and would like to recreate this app in BB. In ASheet i have a slice that displays rows with the following expression:
OR(
AND(
IN([Status], {"Follow up", "Meeting", "Quote"}),
OR(
ISBLANK([Due Date]),
AND(NOT(ISBLANK([Due Date])), [Due Date] <= TODAY())
)
),
AND(
IN([Status], {"Prep", "Order", "Deliver", "Pending"}),
NOT(ISBLANK([Due Date])),
[Due Date] <= TODAY()
),
AND(
ISBLANK([Status]),
NOT(ISBLANK([Due Date])),
[Due Date] <= TODAY()
)
What would you recommendations be regarding this to get it to work in budibase?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions