No, not necessarily the AND string. I think you have to set up a virtual outlet to make action depend on two float switches.
Edit: "and" does not work. Stand by; I found the method
Edit: The example I found isn't using float switches, but you get the idea.
Suppose you wanted the day to be Tuesday AND the time to be 4pm-5pm for this outlet to be ON.
Ex 1:
Set OFF
If DoW -T----- Then ON
If Time 16:00 to 17:00 Then ON
*This example won't work. It is an "OR" condition... if it's either Tuesday OR 4pm-5pm then the outlet would be ON.
Ex 2:
Set OFF
If DoW -T----- Then ON
If Time 17:00 to 16:00 then OFF
* This one works, and is essentially an "AND". The controller sets the condition to ON if the day is Tuesday (or in your example, float off/on), then turns it back OFF if the time is OTHER than 4-5.
So, assuming you want this outlet normally ON, this should work:
Set ON
If switch_2 ON then OFF
If switch_1 ON then ON
Line 2 tells it to turn off if the first qualifier is met.
Line 3 tells it that unless the second qualifier is met then reverse that "decision".
Remember that with multiple condition calls like this, the last one will always supercede the one before it.
I THINK that's right, but once you see how it works in the Apex's "brain" then you can change the statements to suit your needs.