Guys,
After ESRI updates to AGOL last week i can no longer change the status field from within the Data Tab.
Survey 123 Connect published, with hidden status field that has dropdown options. I can change within the feature layer but no longer can i change within the Survey 123 -Data list, what looks like and Excel file.
Survey has been working for years, 2019....
Hello @PaulTHEDUDELang,
To resolve the issue:
- Set the default value for the status question to lowercase open to match the name of the choice in the choice list. This will fix the issue for new survey records submitted.
- To fix the issue for existing records you will need to field calculate the status field. My suggestion would be to use Arcade, the following expression should do the trick:
if ($feature["status"] == "Open"){
return "open";
} else {
return $feature["status"];
}