Create List based on Row, Column and "X" Value in table

YoungConner

New Member
Joined
Jul 8, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello, I have spreadsheet where I want to create a list based on the X values in the table. I already have a macro that will create the list but I also need to macro to include the row header.

Here is the spreadsheet table
Spreadsheet.JPG

This is the list I want to create
List.JPG


This is the VBA I currently have:
Sub Test1()
Dim rng As Range
Dim r As Integer
Dim c As Integer
Dim lastRow As Integer
Dim lastRow2 As Integer
Set rng = Range("B2:F8")
For Each dng In rng
lastRow = Range("H" & Rows.Count).End(xlUp).Row
lastRow2 = Range("I" & Rows.Count).End(xlUp).Row
If dng.Value = 1 Then
r = dng.Row
c = dng.Column
Range("H" & lastRow + 1).Value = Cells(r, 1).Value
Range("I" & lastRow2 + 1).Value = Cells(1, c).Value
End If
Next dng
End Sub
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Can be accomplished using Power Query to Unpivot your data.

 
Upvote 0

Forum statistics

Threads
1,215,093
Messages
6,123,068
Members
449,091
Latest member
remmuS24

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