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}
Les membres connectés peuvent publier, suivre les mises à jour, et plus encore. Nouveau ici ? Inscrivez-vous gratuitement.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.