I have a computed field “Segment” on a form of type Response. There is also a field “Segment” on parent form with a default value of “East”.
When I create a new response document from the parent document, what will take priority - the value inherited from parent document or the value computed by field formula.
In most of the cases, the field formula is prevailing but in some cases, I am getting the value “East” which is on the parent doc.
The application is accessed over web and I am launching the response document ?OpenForm&ParentUNID=‘…’
Fields are evaluated from top to bottom and “left” to “right” (or their bidi equivalents). If you use the same fieldname on the response form, fields calculated before that field on the response will use the value from the parent. Fields after that point use the value from the response. Does that explain the discrepancy?
If not, you would have to provide more detail about your application.