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.
Solved! Go to Solution.
You can use the Left function
if (Left($feature.ConduitSize, 6) == '1x1.25') return $feature.ClengthFt
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}