Formula

hi there!
I have a clause whith a concept #house^responsible, where there are 2 predefined answers: A or B. If A is indicated as the responsible, B is the other party who isn’t responsible. Or the other way around.

In the clause I’ld like to add an automation where the non-responsible (A or B, depending on what answer has been chosen) is automatically added.

I’m in doubt how to make that formula the most optimal way.
Can someone help me?

thanks!

this is an option, but is it a good one?

{#house^responsible= ‘A’: B | #house^responsible= ‘B’: A}

Your proposed solution looks good to me, indeed. Since the cases of your condition are mutually exclusive, it works perfectly to write the condition the way you did.

great! I’ll keep it then! thanks!