-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
Description
My schema for storing document information contains a "review date".
I can show all documents with no review date using:
---- struct table ----
schema: datainventory
cols: %pageid%, name, description, purpose,lastaudit
filter:lastaudit=
----
I'd like to be able to show a table of all documents that are overdue for a review and this seems to work
---- struct table ----
schema: datainventory
cols: %pageid%, name, description, purpose,lastaudit
filter:lastaudit<$TODAY$
----
I'd like to be able to show a table of all documents with an review date in the next month. Something like:
---- struct table ----
schema: datainventory
cols: %pageid%, name, description, purpose,lastaudit
filter:lastaudit<dateadd($TODAY$, 30 days)
----
Although I'd be happy with being able to define new variables like
rottaran