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}
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.