Hello,
I have two custom entitites connected by n:n relationship. Now I want to change a value in entity1, when a field in entity2 is true (both are boolean). My formula looks like this:
What means, that, if I tick bool2 in entity2, bool1 in entity1 should be unticked. But I do not get it to work, it happens nothing, also no error in log-file.
I have two custom entitites connected by n:n relationship. Now I want to change a value in entity1, when a field in entity2 is true (both are boolean). My formula looks like this:
Code:
ifThen( bool2, record\update('entity1', 'Id1', 'bool1', false) );
Comment