Presense with multiple people Bug/Issue with R4.0

Going in to setup a Presence trigger.. Looks like this in 4.0.

No option for ALL, just Any right.. Need a trigger for ALL presence sensors to leave.
Google Photos

Poke around and go into ACTIONS... at the bottom I see manage condition.
Google Photos

Go into it.... and edit the condition
Google Photos

Bam... the option is there, but not in the initial setup phase.
https://photos.app.goo.gl/Ltm1GM6XFkRWgeGU7

Seems like this options should be on the initial trigger/condition setup, not go back and edit it to set it up the way you need.

Conditions are only used in actions, not triggers. All presence sensors cannot be a trigger because all do not leave at the exact same moment.
Now, you could create a virtual presence sensor that switches to not present when both presence sensors have left, and use that as a trigger. You could also trigger off either of your actual presence devices and include the other one in a conditional action.

You want to structure it like this:

Trigger: Presence sensor 1 or Presence sensor 2 CHANGE

Action:
If both sensors are gone do x
Else if sensor 1 is present XOR sensor 2 is present. then
Do Y
End-If

That will do X if both sensors are gone and do y if one of them is home. The XOR works for Rule #1 because one of you will always arrive before the other and the xor will only be true if either sensor 1 or sensor 2 is present but not when both are. So, when one arrives, the rule fires, when the second arrives, it doesn't.