Jyggalag

Active Member
Joined
Mar 8, 2021
Messages
422
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Dear All,

I currently have a setup that looks approximately like this:

1642514321397.png


I would like to know if there is some record macro / VBA solution to separate the emails so email 1 goes into Column K, email 2 into column O and email 3 into column S?

I tried to record a macro and use "text to columns" under the data tab and almost got it, but it didnt work out and it was quite inflexible if I created a new set of three emails in cell J3 (above it is in cell J2) and applied the macro to it, which was unsuccessful, unfortunately.

Also, if there are only 2 emails in the cell, it would be nice if it could leave the last cell (cell S) blank.

Please note that I have a similar looking thread I posted 5 minutes ago, but it is a different question, therefore I have separated the questions. I hope that any moderator would agree with this decision or merge my questions if necessary.

Thank you for your time everybody!

Kind regards,
Jyggalag.
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Try this:
VBA Code:
Sub SplitEmails()

    Dim lr As Long
    Dim r As Long
    Dim arr() As String
    Dim col(2) As String
    Dim i As Long
    
    Application.ScreenUpdating = False
    
'   Pre-populate column reference array
    col(0) = "K"
    col(1) = "O"
    col(2) = "S"
    
'   Find last row in column J with data
    lr = Cells(Rows.Count, "J").End(xlUp).Row
    
'   Loop through all rows starting at row 2
    For r = 2 To lr
'       Build array of email addresses
        arr = Split(Cells(r, "J"), ";")
'       Loop through and populate columns
        For i = LBound(arr) To UBound(arr)
            Cells(r, col(i)) = arr(i)
        Next i
    Next r
    
    Application.ScreenUpdating = True
    
End Sub
 
Upvote 0
Solution
One other variant

VBA Code:
Sub jec()
 Dim it, ar
 For Each it In Range("J2", Range("J" & Rows.Count).End(xlUp))
    ar = Split(Join(Split(it, ";"), ";;;;"), ";")
    it.Offset(, 1).Resize(, UBound(ar) + 1) = ar
 Next
End Sub
 
Upvote 0
Try this:
VBA Code:
Sub SplitEmails()

    Dim lr As Long
    Dim r As Long
    Dim arr() As String
    Dim col(2) As String
    Dim i As Long
   
    Application.ScreenUpdating = False
   
'   Pre-populate column reference array
    col(0) = "K"
    col(1) = "O"
    col(2) = "S"
   
'   Find last row in column J with data
    lr = Cells(Rows.Count, "J").End(xlUp).Row
   
'   Loop through all rows starting at row 2
    For r = 2 To lr
'       Build array of email addresses
        arr = Split(Cells(r, "J"), ";")
'       Loop through and populate columns
        For i = LBound(arr) To UBound(arr)
            Cells(r, col(i)) = arr(i)
        Next i
    Next r
   
    Application.ScreenUpdating = True
   
End Sub

Both of your codes are amazing!!

Thank you so much guys! I designed to assign this code to a macro for now and it works perfectly. Much appreciated, you've really made my day :D
 
Upvote 0
You are welcome.
Glad we were able to help!
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top