Skip to main content

Kutools for Office — One Suite. Five Tools. Get More Done.

How to transpose cells in one column based on unique values in another column?

Author Xiaoyang Last modified

Supposing, you have a range of data which contains two columns, now, you want to transpose cells in one column to horizontal rows based on unique values in another column to get the following result. Do you have any good ideas to solve this problem in Excel?

A screenshot showing the desired result after transposing cells based on unique values

Transpose cells in one column based on unique values with formulas

Transpose cells in one column based on unique values with VBA code

Transpose cells in one column based on unique values with Kutools for Excel


Transpose cells in one column based on unique values with formulas

With the following array formulas, you can extract the unique values and transpose their corresponding data into horizontal rows, please do as follows:

1. Enter this array formula: =INDEX($A$2:$A$16, MATCH(0, COUNTIF($D$1:$D1, $A$2:$A$16), 0)) into a blank cell, D2, for example, and press Shift + Ctrl + Enter keys together to get the correct result, see screenshot:

A screenshot showing the formula to extract unique values for transposing data

Note: In the above formula, A2:A16 is the column that you want to list the unique values from, and D1 is the cell above this formula cell.

2. Then drag the fill handle down to the cells to extract all the unique values, see screenshot:

A screenshot showing the unique values extracted using a formula

3. And then go on entering this formula into cell E2: =IFERROR(INDEX($B$2:$B$16, MATCH(0, COUNTIF($D2:D2,$B$2:$B$16)+IF($A$2:$A$16<>$D2, 1, 0), 0)), 0), and remember to press Shift + Ctrl + Enter keys to get the result, see screenshot:

A screenshot showing the formula to transpose cells in Excel based on unique values

Note: In above formula: B2:B16 is the column data that you want to transpose, A2:A16 is the column that you want to transpose the values based on, and D2 contains the unique value that you have extracted in Step 1.

4. Then drag the fill handle to right of the cells that you want to list the transposed data until displays 0, see screenshot:

A screenshot showing the transposed data in Excel using formulas

5. And then continue dragging the fill handle down to the range of cells to get the transposed data as following screenshot shown:

A screenshot showing the final transposed data in Excel based on unique values


Transpose cells in one column based on unique values with VBA code

May be the formulas are complex for you to understand, here, you can run the following VBA code to get the desired result you need.

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Transpose cells in one column based on unique values in another column:

Sub transposeunique()
'updateby Extendoffice
    Dim xLRow As Long
    Dim i As Long
    Dim xCrit As String
    Dim xCol  As New Collection
    Dim xRg As Range
    Dim xOutRg As Range
    Dim xTxt As String
    Dim xCount As Long
    Dim xVRg As Range
    On Error Resume Next
    xTxt = ActiveWindow.RangeSelection.Address
    Set xRg = Application.InputBox("please select data range(only two columns):", "Kutools for Excel", xTxt, , , , , 8)
    Set xRg = Application.Intersect(xRg, xRg.Worksheet.UsedRange)
    If xRg Is Nothing Then Exit Sub
    If (xRg.Columns.Count <> 2) Or _
       (xRg.Areas.Count > 1) Then
        MsgBox "the used range is only one area with two columns ", , "Kutools for Excel"
        Exit Sub
    End If
    Set xOutRg = Application.InputBox("please select output range(specify one cell):", "Kutools for Excel", xTxt, , , , , 8)
    If xOutRg Is Nothing Then Exit Sub
    Set xOutRg = xOutRg.Range(1)
    xLRow = xRg.Rows.Count
    For i = 2 To xLRow
        xCol.Add xRg.Cells(i, 1).Value, xRg.Cells(i, 1).Value
    Next
    Application.ScreenUpdating = False
    For i = 1 To xCol.Count
        xCrit = xCol.Item(i)
        xOutRg.Offset(i, 0) = xCrit
        xRg.AutoFilter Field:=1, Criteria1:=xCrit
        Set xVRg = xRg.Range("B2:B" & xLRow).SpecialCells(xlCellTypeVisible)
        If xVRg.Count > xCount Then xCount = xVRg.Count
        xRg.Range("B2:B" & xLRow).SpecialCells(xlCellTypeVisible).Copy
        xOutRg.Offset(i, 1).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
        Application.CutCopyMode = False
    Next
    xOutRg = xRg.Cells(1, 1)
    xOutRg.Offset(0, 1).Resize(1, xCount) = xRg.Cells(1, 2)
    xRg.Rows(1).Copy
    xOutRg.Resize(1, xCount + 1).PasteSpecial Paste:=xlPasteFormats
    xRg.AutoFilter
    Application.ScreenUpdating = True
End Sub

3. Then press F5 key to run this code, and a prompt box will pop out to remind you select the data range that you want to use, see screenshot:

A screenshot of a prompt box for selecting a data range to transpose in Excel

4. And then click OK button, another prompt box will pop out to remind you to select a cell to put the result, see screenshot:

A screenshot of a prompt box for selecting an output cell for transposed data in Excel

6. Click OK button, and the data in column B has been transposed based on unique values in column A, see screenshot:

A screenshot showing the transposed data in Excel after running VBA code


Transpose cells in one column based on unique values with Kutools for Excel

If you have Kutools for Excel, combining the Advanced Combine Rows and Split Cells utilities, you can quickly finish this task without any formulas or code.

Kutools for Excel offers over 300 advanced features to streamline complex tasks, boosting creativity and efficiency. Itegarate with AI capabilities, Kutools automates tasks with precision, making data management effortless. Detailed information of Kutools for Excel...         Free trial...

After installing Kutools for Excel, please do as follows:

1. Select the data range that you want to use. (If you want to keep the original data, please copy and paste the data to another location firstly.)

2. Then click Kutools > Merge & Split > Advanced Combine Rows, see screenshot:

A screenshot of the Advanced Combine Rows option on the Kutools tab on the Ribbon

3. In the Combine Rows Based on Column dialog box, please do the following operations:

(1.) Click the column name that you want to transpose data based on, and select Primary Key;

(2.) Click another column that you want to transpose, and click Combine then choose one separator to separate the combined data, such as space, comma, semicolon.

A screenshot of the Combine Rows Based on Column dialog box

4. Then click Ok button, the data in column B has been combined together in one cell based on the column A, see screenshot:

A screenshot showing the combined data in Kutools for Excel after merging rows based on unique values

5. And then select the combined cells, and click Kutools > Merge & Split > Split Cells, see screenshot:

A screenshot of the Split Cells option on the Kutools tab on the Ribbon

6. In the Split Cells dialog box, select Split to Columns under the Type option, and then choose the separator which separate your combined data, see screenshot:

A screenshot of the Split Cells dialog box

7. Then click Ok button, and select a cell to put the split result in the popped out dialog box, see screenshot:

A screenshot of the dialog box for selecting the output cell

8. Click OK, and you will get the result as you need. See screenshot:

A screenshot showing the final result of transposed data

Download and free trial Kutools for Excel Now !


Demo: Transpose cells in one column based on unique values with Kutools for Excel

 
Kutools for Excel: Over 300 handy tools at your fingertips! Enjoy permanently free AI features! Download Now!

Best Office Productivity Tools

šŸ¤– Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions…
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more
Use Kutools in your preferred language – supports English, Spanish, German, French, Chinese, and 40+ others!

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!

All Kutools add-ins. One installer

Kutools for Office suite bundles add-ins for Excel, Word, Outlook & PowerPoint plus Office Tab Pro, which is ideal for teams working across Office apps.

Excel Word Outlook Tabs PowerPoint
  • All-in-one suite — Excel, Word, Outlook & PowerPoint add-ins + Office Tab Pro
  • One installer, one license — set up in minutes (MSI-ready)
  • Works better together — streamlined productivity across Office apps
  • 30-day full-featured trial — no registration, no credit card
  • Best value — save vs buying individual add-in