Hi, I am a bit stuck…
I use the following to alert me to tiddlers that require a review, there are two fields in tiddlers in the ‘review pool’ - the date last reviewed named “last-reviewed3” and the review interval expressed in days but for convenience stored as a negative value named “interval3”, so -30 would mean review every 30 days.
{{{[all[tiddlers]!is[system]has:field[last-reviewed3]]
:filter[!days:last-reviewed3{!!interval3}]
+[sort[last-reviewed3]limit[10]]}}}
If there was nothing to review today I might want to look at tiddlers that will require review tomorrow - so if the tiddler field interval3 was set to -30 then I would like to run the filter a second time with a value of -31 but I don’t want to change the actual value in the tiddler field.
My problem is to be able to insert a value in place of interval3 in the second filter run (ie -30 the first run and -31 in the second run). I am not having much luck working out how to add the arithmetic step in the filter.
Thanks…