Using Or Logic in If Statements

I’ve seen some postings on this, but they don’t answer my specific question (or else I missed it). I understand how to change AND to OR in an IF statement, but it seems as if it only changes all ANDs or all ORs. I am trying to set up something like 1 AND (2 AND 3) OR (4 AND 5). 1 would be someone’s presence. 2 and 3 are weekdays at a specified time. 4 and 5 are weekends at a specified time. Right now I have two Rules for this, but I thought I’d try to create just one Rule. I think I could do this by doing if 1 is true, then go to two other IF statements that would contain 2/3 and 4/5, but I was wondering if it’s possible to do it with one top level IF statement. Thanks.

The nested IF statements are the right way to do this today. :slight_smile:

Edit: I took a quick look and I don’t think there’s a feature request for this yet. Feel free to create one!

OK, thanks. Appreciate the reply.