Search Community
- Force.com Discussion Boards
- :
- Salesforce User Discussions
- :
- Best Practices Discussion
- :
- Re: Contact first name in first name field
turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Contact first name in first name field
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-22-2009 06:50 AM
Our organization is undertaking a data cleansing effort. Several of our contacts have the first and last name in the last name field. We would like to make sure that all contact records have the first name in the first name field. Does anyone have an idea on how this can be done?
Re: Contact first name in first name field
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-22-2009 07:44 AM
You could export your contacts to Excel using data loader (make sure you include the Contact ID field), clean the data and then re-import it. Using Excel, you could either manually fix the data or create an Excel formula to pull the first name out of the last name field. I don't have any examples, but this is a straightforward Excel function.
Re: Contact first name in first name field
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-23-2009 10:10 AM
To build on Mark's approach, this Excel formula will identify whether a name has a space:
=IF(NOT(ISERROR(FIND(" ",A1))),"Has Space","No Space")
And then you can filter out the space-having names and use the Data-Text to Columns... feature in Excel to split them out into first and last name.

