Schedule web reports using 'match relevance'

I’m new to relevance and trying to do something that in my head should be simple but I just can’t get anything to work.

I’m looking to setup scheduled activities that will send out some standard reports automatically to e-mail out on the day after ‘patch Tuesday’ at midday. If I manually schedule a report everything works as I need but it’s just when I come to setup the ‘match relevance’.

This is what I use:

if current date = (first monday of month_and_year of current date +7*day)then true else false

Then set the report report to generate every “1 days”. It will only be relevant 7 days after first Monday, which is Patch Tuesday.

1 Like

There’s an edge-case to be aware of - if the month starts on a Tuesday, then “Patch Tuesday” will be on the 8th, only one day after the first Monday. I’d recommend

current date = (first tuesday of current month_and_year + 8 * day)

(8 days after the first Tuesday is the Wednesday after Patch Tuesday)

1 Like