I've managed to solve my issue on one side, but not dynamically based on two fields referencing each other.
What I have:
- Order $ field
- Estimated $ field
- Estimated % field
All live in a form, all are editable.
What I need:
The estimated field should be: Estimated field = Order $ * Estimated %
BUT, the estimated field can also manually be set, in which case I need the Estimated % to change.
Estimated % = estimated $/order $*100.
So based on which estimated field is changed the other needs to dynamically change accordingly. In my attempts, I get a circular reference error.
Any help is greatly appreciated.