Remove last word from a field
Description
This command will remove the last word in a field. The word "fieldname" in the command syntax below should be changed to the actual field name you want the last word removed from. This command will not affect records that contain only one word in "fieldname". You can adjust the ">0" clause so the command only acts on records with "n" numbers of spaces. Example, change ">0" to "=3" and the command will only affect records that contain "3" spaces (examples shown below).
The Command At Work
Before running command
|
After running command
|
The Command
Copy this command, then paste it into the large text area of the command window:
Replace fieldname with left(fieldname,rat(" ",alltrim(fieldname))) for occur(" ",alltrim(fieldname))>0
After clicking RUN, the excess data will be stripped from the field of choice, helping clean up the field.