Skip to main content

I have been asked to upload leads into SL, the only problem is there are multiple leads all in one row.(see below).  Would anyone know how to split these emails so they are in there own cells? 

 

I have tried =textsplit and =transpose with no luck. 

 

djimenez@hps.org

 

jmcintyre@hps.org

 

bfiordalis@hps.org

 

nharber@hps.org

 

 

Any help would be greatly appriciated. 

 

Matt 

 

#Salesforce Admin

2 answers
  1. Apr 15, 3:39 PM

    Hi @Matt Laird

     

    You just need to split the values into separate cells (or rows) properly. 

     

    Solution 1: Using Excel (Text to Columns)

    If all emails are in one cell separated by line breaks:

    1.  Select the cell 
    2.  Go to Data → Text to Columns
    3.  Choose Delimited → Next
    4.  Select Other
    5.  Press Ctrl + J (this inserts a line break delimiter) 
    6.  Click Finish

    This will split each email into separate columns

     

    Solution 2: Convert into Rows (Best for Salesforce Upload)

    Salesforce usually needs one record per row, so:

    After splitting into columns:

    1.  Copy the split data 
    2.  Paste into a new sheet 
    3.  Use Paste Special → Transpose

    OR

    Use this formula (Excel 365): =TEXTSPLIT(A1,CHAR(10))

     

    Then copy → paste as values → convert to rows if needed

0/9000