Convert Rows into three columns from a cell

azeem8202

New Member
Joined
Oct 16, 2017
Messages
6
Hi everyone,

Needs your support for given situation.

I have one cell (sheet - 1) in which I enter the name , employee number and functional title of many employees. i want to extract name, employee code and functional title in three different columns another sheet (sheet - 2 ) first line of cell (Following staff has not yet attended the IB training:) remains constant.

content of the cell are as follows:

Following staff has not yet attended the training:
Mr. A B C (111 111) - Operational Officer
Mr. P D S (222 222) - Relationship Manager

Note: 1. Number of employees may be 1 or more than 1.
2. For next line I enter Alt+enter.

I want to extract columns like this:
Column A Column B Column C
A B C 111 111 Operational Officer
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Assuming your data is in column A starting at row 2, place the formulas in B2, C2 and D2 and then copy them down as far as your data goes:
=LEFT(A2,FIND("(",A2,1)-2)
=MID(A2,SEARCH("(",A2)+1,SEARCH(")",A2)-SEARCH("(",A2)-1)
=MID(A2, FIND("- ", A2) + 2, LEN(A2))
 
Upvote 0
Thanks for reply.

Following content are placed in one row.
"Following staff has not yet attended the training:
Mr. A B C (111 111) - Operational Officer
Mr. P D S (222 222) - Relationship Manager"
 
Upvote 0
Are you saying that
"Following staff has not yet attended the training:
Mr. A B C (111 111) - Operational Officer
Mr. P D S (222 222) - Relationship Manager"
is all in one cell? Are the quotation marks included in the cell?
 
Last edited:
Upvote 0
Start with a blank Sheet2. The macro assumes your data starts in row 2 of Sheet1.
Code:
Sub SplitInfo()
    Application.ScreenUpdating = False
    Dim LastRow As Long
    LastRow = Sheets("Sheet1").Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Dim rng As Range
    Dim vRng As Variant
    Dim i As Long
    With Sheets("Sheet2")
        .Cells(1, 1) = "Following staff has not yet attended the IB training."
        .Range("A2:C2") = Array("Name", "Employee Number", "Functional Title")
    End With
    For Each rng In Sheets("Sheet1").Range("A2:A" & LastRow)
        vRng = Split(rng, Chr(10))
        For i = 1 To UBound(vRng)
            Sheets("Sheet2").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0) = Trim(Mid(vRng(i), 4, WorksheetFunction.Find("(", vRng(i), 1) - 4))
            Sheets("Sheet2").Cells(Rows.Count, "B").End(xlUp).Offset(1, 0) = Mid(vRng(i), WorksheetFunction.Search("(", vRng(i)) + 1, WorksheetFunction.Search(")", vRng(i)) - WorksheetFunction.Search("(", vRng(i)) - 1)
            Sheets("Sheet2").Cells(Rows.Count, "C").End(xlUp).Offset(1, 0) = Split(vRng(i), " - ")(1)
        Next i
    Next rng
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
Can this be done without macro???

Hi, here is one option you can try, note the formula in column B relies on the result from the formula in column A.


Excel 2013/2016
ABC
1Col ACol BCol C
2Mr. A B C111 111Operational Officer
3Mr. P D S222 222Relationship Manager
4Mr Z X Spectrum81IT Manager
5
Sheet2
Cell Formulas
RangeFormula
A2=TRIM(LEFT(SUBSTITUTE(TRIM(MID(SUBSTITUTE(Sheet1!$A$1,CHAR(10),REPT(" ",LEN(Sheet1!$A$1))),(ROWS(A$2:A2)+1)*LEN(Sheet1!$A$1)-(LEN(Sheet1!$A$1)-1),LEN(Sheet1!$A$1))),"(",REPT(" ",LEN(Sheet1!$A$1))),LEN(Sheet1!$A$1)))
B2=MID(TRIM(LEFT(SUBSTITUTE(TRIM(MID(SUBSTITUTE(Sheet1!$A$1,CHAR(10),REPT(" ",LEN(Sheet1!$A$1))),(ROWS(B$2:B2)+1)*LEN(Sheet1!$A$1)-(LEN(Sheet1!$A$1)-1),LEN(Sheet1!$A$1))),")",REPT(" ",LEN(Sheet1!$A$1))),LEN(Sheet1!$A$1))),LEN($A2)+3,LEN(Sheet1!$A$1))
C2=TRIM(RIGHT(SUBSTITUTE(TRIM(MID(SUBSTITUTE(Sheet1!$A$1,CHAR(10),REPT(" ",LEN(Sheet1!$A$1))),(ROWS(C$2:C2)+1)*LEN(Sheet1!$A$1)-(LEN(Sheet1!$A$1)-1),LEN(Sheet1!$A$1))),"-",REPT(" ",LEN(Sheet1!$A$1))),LEN(Sheet1!$A$1)))



Excel 2013/2016
A
1Following staff has not yet attended the training: Mr. A B C (111 111) - Operational Officer Mr. P D S (222 222) - Relationship Manager Mr Z X Spectrum (81) - IT Manager
Sheet1
 
Upvote 0
thank FormR for you reply. while applying this formula to my query , details of first employee (Mr. A B C ) does not separated in to three columns.
 
Upvote 0

Forum statistics

Threads
1,217,364
Messages
6,136,117
Members
449,993
Latest member
Sphere2215

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