C
Cheryl Fischer
This might work better:
Left([NodeName], InStr([NodeName], " ") -1)
In the expression you supplied, you were passing a literal instead of a
field name and also searching for a null string, "", rather than " "
Left([NodeName], InStr([NodeName], " ") -1)
In the expression you supplied, you were passing a literal instead of a
field name and also searching for a null string, "", rather than " "