I'm building a survey that requires an Area of Interest Polygon be drawn, and I am trying to make it so the form can't be submitted unless the polygon is between 0 and 10 acres.
I've got the acre conversion, and I've got the calculation evaluating the size of the polygon, but I'm not sure how to DO something with that result.
${request_area_acres}<10 and ${request_area_acres} > 0
The statement evaluates to true or false as expected, but adding the constraint "TRUE" to the field and making it required does not work. I'm also not able to make the "TRUE" constraint lowercase, but I'm hoping that doesn't matter.