Inactivate a PLEG Schedule?

Is there any way to inactivate a PLEG schedule without deleting it?

Not that I am aware of.

I don’t think there is. What I do is cut the condition and paste it into the comments box so that I don’t lose it and can paste it back when I need it. This was the quick work around that I use

I don’t think there is a way to disable a specific schedule. To disable a condition add (1==0) or (1==1) to your condition depending on if you want to keep it false or true. For example to disable and keep false (1==0) AND (Your Condition). to disable and keep true (1==1) OR (Your Condition) (as long as repeats is not used). Depending on your logic you can get creative. For example create a condition called Disable that is simply (1==1). This condition will always be true. Then add that condition in combination with your schedules in your other conditions for example (YourSchedule AND NOT(Disable)). Now you can change Disable between (1==1) and (1==0) to make it true or false which would then essentially disable/enable the schedules in your conditions.

kfxo,

Great suggestion. Simple and straightforward. Thanks!

kartcon

Excellent ideas.