Stacked columns from dataset

junkpolar

New Member
Joined
Oct 11, 2018
Messages
1
Hi there,
New to VBA - have tried a few different bits of code but can't find one that achieves what I need.

Trying to transfer a 2-axis dataset into stacked columns, removing zero balances. I want to populate adjacent columns with the headers along each axis.

Below / linked image
jfbuTp
is an example. Dataset is approx 7000 cells.

jfbuTp


Any help would be fantastic.
Many thanks!
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Try the following macro codes.
Sub stack_data()
Dim x As Integer, a As Integer, b As Integer, c As Integer
x = Cells(Rows.Count, 1).End(xlUp).Row
For a = 1 To x
b = Application.WorksheetFunction.CountIf(Range("B" & a & ":D" & a), "")
If b < 3 Then
For c = 1 To 3
If Cells(a, c + 1) > 0 Then
Cells(a, 8) = Cells(1, c + 1)
Cells(a, 9) = Cells(2, c + 1)
Cells(a, 10) = Cells(a, 3)
Cells(a, 11) = Cells(a, 4)
Cells(a, 12) = Cells(3, c + 1)
End If
Next c
End If
Next a
MsgBox "complete"
End Sub
I could not test it since your dataset was an image and my efforts with OCR did not help.
Ravi
 
Upvote 0

Forum statistics

Threads
1,214,406
Messages
6,119,330
Members
448,888
Latest member
Arle8907

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