Hi, as the title says, I want to change the value of one entity field in a second entity (bool), when I change a certain entity field (also bool) in the first entity. I already tried with record\update, but did not get it to work.
My formula so far (where entity1 is the first entity, IDrelated1 the related record by one-to-one relationship, field1 the field I will change, value1 the value), entity2 the second entity etc.). I would use an ifThen formula:
My formula so far (where entity1 is the first entity, IDrelated1 the related record by one-to-one relationship, field1 the field I will change, value1 the value), entity2 the second entity etc.). I would use an ifThen formula:
Code:
ifThen( field1 == true; record\update('entity1', 'IDrelated1', 'field1', false );
Comment