Hello @elec1123,
I’ve visited your web page, and you are referring to fields in different forms. I’m sorry but that’s not possible, you should edit each form by separated, furthermore, I’ve checked different forms in your website and the values of these fields are different on them.
If the values of the fields: fieldname40 and fieldname55 are the same in all your forms, and you want to update their values at the same time, an alternative would be use the “Server Side Equations” add-on (distributed with the Developer and Platinum versions of the plugin). You can define a couple of server side equations and call them from the forms. For example, entering the equations:
$GLOBALS['SERVERSIDEEQUATIONS']['value_a'] = function() { return 0.06316; };
$GLOBALS['SERVERSIDEEQUATIONS']['value_b'] = function() { return 0.08978; };
And then, entering as the equations of the calculated fields:
– For the fieldname40 field:
SERVER_SIDE('value_a');
– For the fieldname55 field:
SERVER_SIDE('value_b');
Implementing the server side equations and calling them from the calculated fields, you only should edit the values in the server side equations, and won’t be needed to edit the forms every time want change these values.
Another alternative would be use a pair of “DS” fields instead calculated ones (the DS fields read their values from external data-sources, like a database or a CSV file), and to define the values in a CSV file that would be read from every form.
Best regards.