Is there any way to select attributes that include "1x1.25", even if something else comes after that in the attribute? I just put the "Includes" there to illustrate what I'm attempting to do, but it does not work.
You can use the Left function
if (Left($feature.ConduitSize, 6) == '1x1.25') return $feature.ClengthFt
Try:
if (Find("1x1.25", Lower($feature.ConduitSize)) > -1){ return $feature.ClengthFt}
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.