I would like to set up a notification to send every Friday with the current level of a tank (no matter what the tank level is), but I can't figure out how to send a periodic notification when the period is over 24 hours.
I would like to set up a notification to send every Friday with the current level of a tank (no matter what the tank level is), but I can't figure out how to send a periodic notification when the period is over 24 hours.
Set your start trigger as:
if (weekday('*') = 6) then true else false
And set the period as 24 hours, with a offset of midnight.
Set your start trigger as:
if (weekday('*') = 6) then true else false
And set the period as 24 hours, with a offset of midnight.