Hi,
In my survey the feature class stores a set of current values and has related table that will store old values if one of the current values is updated. I've been trying to use the calculate column to copy the values by referencing the parent variable, as shown below.
| decimal | safety_risk_score | |
| decimal | com_std_risk_score | |
| decimal | dev_com_risk_score | |
| | |
| select_one Yes_No | update_risk | |
| begin repeat | historical_risk | |
| decimal | safety_risk_score_h | ${safety_risk_score} |
| decimal | com_std_risk_score_h | ${com_std_risk_score} |
| decimal | dev_com_risk_score_h | ${dev_com_risk_score} |
However the values are not being displayed in the repeat section of the form. Is not possible to reference values in a repeat section this way?
Cheers