Author |
|
Lenny Senior Member
Joined: January 06 2008
Online Status: Offline Posts: 102
|
Posted: January 09 2016 at 08:15 | IP Logged
|
|
|
I created a timed event with "weekends" as the frequency
and it executed Saturday on time but re-scheduled for
the following Saturday instead of Sunday. Can someone
else reproduce this?
PowerHome Build 5.1.C
|
Back to Top |
|
|
dhoward Admin Group
Joined: June 29 2001 Location: United States
Online Status: Offline Posts: 4447
|
Posted: January 22 2016 at 15:37 | IP Logged
|
|
|
Confirmed bug (pretty much every version of PowerHome).
Ive got it fixed now for the next version. In the
meantime, I would just duplicate the TE and have one for
Saturday and one for Sunday.
Appreciate you finding and reporting this.
Dave.
|
Back to Top |
|
|
FilsMark Newbie
Joined: May 22 2017
Online Status: Offline Posts: 1
|
Posted: May 28 2017 at 13:21 | IP Logged
|
|
|
Lenney wrote:
I created a timed event with "weekends"
as the frequency
and it executed Saturday on time but re-scheduled for
the following Saturday instead of Sunday. Can someone
else reproduce this?
PowerHome Build 5.1.C |
|
|
Is there anyway to set it to only do one weekend per
month?
Edited by FilsMark - January 21 2020 at 07:16
|
Back to Top |
|
|
gg102 Senior Member
Joined: January 29 2013 Location: United States
Online Status: Offline Posts: 245
|
Posted: May 28 2017 at 22:52 | IP Logged
|
|
|
Have you thought of maybe putting in the boolean field
something like:
if ( dayname(today())="Saturday" or
dayname(today())="Sunday",1,0)
This will allow your TE to trigger on Saturday and
Sunday.
If you want it to only happen on one day you could use:
if ( dayname(today())="Sunday",1,0)
Might not be exactly what you want, but might be a
workaround....
If you want one day per month you could use:
if ( day(today())=x,1,0)
just a thought....
Edited by gg102 - May 28 2017 at 22:55
|
Back to Top |
|
|