Copy to column if cell matches certain value

jb1180

New Member
Joined
Dec 6, 2017
Messages
1
I have a 3 row spreadsheet that needs to be separated into multiple columns. Row 1 is the unique value. Row 2 will become the column name. Row 3 contains the data for the column. Ultimately will result in about 200 columns.

Is there a good formula that would accomplish this? Thanks in advance.

Sample Current format

PART1MANUFACTURERNAME
PART1MANUFACTURER PART NUMBER1
PART2MANUFACTURERNAME
PART2MANUFACTURER PART NUMBER2
PART3MANUFACTURERNAME
PART3MANUFACTURER PART NUMBER3
PART4MANUFACTURERNAME
PART4MANUFACTURER PART NUMBER4

<tbody>
</tbody>

Sample Desired output

MANUFACTURER PART NUMBERMANUFACTURER
PART11NAME
PART22NAME
PART33NAME
PART44NAME

<tbody>
</tbody>

****** id="cke_pastebin" style="position: absolute; top: 134px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">
MANUFACTURER

<tbody>
</tbody>
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
I believe this is beyond a formulas type solution. You'll need a macro like this:
Code:
Sub Zipper()
    Dim i As Integer
    Dim finalRow As Integer
    
    Range("A1").EntireRow.Insert
    
    finalRow = Cells(Rows.Count, 1).End(xlUp).Row
    Range("B1").Value = "Manufacturer Part Number"
    Range("C1").Value = "Manufacturer"
    
    For i = 2 To finalRow
        If Cells(i, 1).Value = "" Then
            Exit For
        End If
        
        Cells(i, 2).Value = Cells(i, 3).Value
        Cells(i, 3).Value = Cells(i + 1, 3).Value
        Range("A" & i + 1).EntireRow.Delete
    Next i
    
    MsgBox "The macro has finished."
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,207
Members
448,554
Latest member
Gleisner2

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