Solved! Go to Solution.
Anthony,
Can a version of your code help me to switch names within a field? From "Smith, John" to "John Smith".
thanks.
Stew
" ".join(a.split(", ").__reversed__())
where 'a' can be substituted with !YourFieldName!
use the python parser of course.
wow, thanks Dan.