Multiple replace expressions in the Multi Field Tool
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks for the continued support!
Wondering if it is possible to have multiple expressions in the Multi-Field tool?
For example: I currently have the following expressions working with one expression per Multi-Field tool. (Currently making this replace in 2 address fields). Was looking to have multiple expressions in the tool.
Multi-Field Tool 1 has the following expression: Replace([_CurrentField_], 'AVENUE', 'AVE')
Multi-Field Tool 2 has the following expression Replace([_CurrentField_], 'PARKWAY', 'PKWY')
Multi-Field Tool 3 has the following expression Replace([_CurrentField_], 'STREET', 'ST')
Any help would be greatly appreciated.
Solved! Go to Solution.
- Labels:
- Expression
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@ABCDA - try this:
replace(replace(replace([_CurrentField_], "AVENUE", "AVE"), "PARKWAY", "PKWY"), "STREET", "ST")
 
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks! Worked perfectly!
