How to use Excel sheets in Sales CRM
Best Answer
Answers
-
To separate first and last names in Excel, use the Text to Columns feature. Select the cells with full names, go to the Data tab, and click Text to Columns. Choose Delimited and select Space. If you prefer formulas, use
=LEFT(A1, FIND(" ", A1)-1)
for the first name and=RIGHT(A1, LEN(A1) - FIND(" ", A1))
for the last name.In Pipedrive, there's no automatic way to split names, but you can manually enter them into separate fields. If importing contacts, split the names in Excel first, then map the columns to the appropriate fields during the import process. You can also create custom fields for first and last names if needed.
0