Designing a survey using Field maps, need to calculate a value for hazard_rating.
Which is a combination of failure_potential, size_of_part, target_rating
I'm using arcade to do this automatically to safe user interaction.
In Arcade this is what I have put together.
Sum(features_, "$feature.failure_potential"_)
Sum(features_, "$feature.size_of_part"_)
Sum(features_, "$feature.target_rating"_)
var $originalFeature.hazard_rating
I need to add up the 3 layers. They are saved as a string. Would this cause the issue?
Test execution error: ',' expected.. Verify test data.