I'm working on an Arcade field calculation in Field Maps. I'm working in the Map Viewer.
This works:
var projectSoilPits = filter($featureset, "UPPER(ProjectNumber) = @projectNumber")
This doesn't :
var projectSoilPits = filter($featureset, "TRIM(ProjectNumber) = @projectNumber")
Neither does this:
var projectSoilPits = filter($featureset, "TRIM(both ' ' from ProjectNumber) = @projectNumber")
Both result in a "Failed to calculate" error when I test the form in both the Map Viewer and the mobile app.
Can someone please tell me why the SQL-92 UPPER function is working for me but TRIM isn't? Thanks in advance!