Not saving Field name in a script
I entered a field name into a script, when I save the script the field name gets replaced with another field in the form. No matter how many times the field name gets corrected it keeps reverting back to the wrong field name. Here is the script as it should be written:
for each Type_of_Workday WorkRow in GrindStatusMemo [ID == input.ID]
{
WorkDay = WorkDay + WorkRow.Item + ",";
}
but once the script is saved this is what appears:
for each Division WorkRow in GrindStatusMemo [ID == input.ID]
{
WorkDay = WorkDay + WorkRow.Item + ",";
}
"Type_of_workday" is always replaced by "Division"
administrator