Hi everyone,
I have been having issues getting my JSON to populate with the last record. Basically, once the user selects Station_Name, I would like the previous record to pull up. Could someone please review my XLS? Thank you!
Solved! Go to Solution.
Hi @bsklaohfl,
It looks like the problem is in the where clause. Try changing
concat("Station Name=",${Station_Name},"'")
to
concat("Station_Name='",${Station_Name},"'")
The field name has an underscore in the feature layer, and there also needs to be a single quote before the double quote so the value for ${Station_Name} will be wrapped in single quotes.
Thanks,
-Barbara
Hi @bsklaohfl,
It looks like the problem is in the where clause. Try changing
concat("Station Name=",${Station_Name},"'")
to
concat("Station_Name='",${Station_Name},"'")
The field name has an underscore in the feature layer, and there also needs to be a single quote before the double quote so the value for ${Station_Name} will be wrapped in single quotes.
Thanks,
-Barbara
Barbara,
THANK YOU A BILLION. This worked! Wonderful!
Brooke