TheAddis

New Member
Joined
Jul 26, 2021
Messages
7
Office Version
  1. 365
  2. 2019
  3. 2016
The Data I have - extracted (about 80+ columns for different people and about 150 rows for the codes):

Contribution Site CodesPerson-APerson-BPerson-CPerson-D
001-5500-000-55
50%​
50%​
003-6600-000-56
20%​
40%​
20%​
10%​
002-8800-000-57
20%​
30%​
001-0677-000-58
30%​
40%​
90%​
Total From Each Person
100%​
100%​
100%​
100%​

The way I wanted to see the Data at the end (By each person only for the sites that there is data for. I do not want to see the zeros/blanks).

Person-A
001-5500-000-55
50%​
003-6600-000-56
20%​
001-0677-000-58
30%​
100%​
Person-B
003-6600-000-56
40%​
002-8800-000-57
20%​
001-0677-000-58
40%​
100%​
Person-C
001-5500-000-55
50%​
003-6600-000-56
20%​
002-8800-000-57
30%​
100%​
Person-D
003-6600-000-56
10%​
001-0677-000-58
90%​
100%​

Your help will save me a day work to may be an hour or even less. Thanks.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Please see the image:
 

Attachments

  • Excel.jpg
    Excel.jpg
    116.4 KB · Views: 16
Upvote 0
Give this macro a try...
VBA Code:
Sub ContributionSiteData()
  Dim R As Long, C As Long, LastRow As Long, LastCol As Long, Sites As Range
  Set Sites = Range("A2", Cells(Rows.Count, "A").End(xlUp).Offset(-1))
  LastRow = Cells(Rows.Count, "A").End(xlUp).Row
  LastCol = Cells(1, Columns.Count).End(xlToLeft).Column
  On Error GoTo Oops
  Application.ScreenUpdating = False
  For C = 2 To LastCol
    With Cells(Rows.Count, "A").End(xlUp)
      .Offset(2).Value = Cells(1, C).Value
      .Offset(3).Resize(Sites.Rows.Count).Value = Sites.Value
      .Offset(3, 1).Resize(Sites.Rows.Count).Value = Sites.Offset(, C - 1).Value
      .Offset(3 + Sites.Rows.Count, 1).Value = Cells(LastRow, C).Value
      .Offset(3, 1).Resize(Sites.Rows.Count + 1).NumberFormat = "0%"
      .Offset(3, 1).Resize(Sites.Rows.Count).Replace "", "#N/A", xlWhole, , , , False, False
    End With
  Next
  Columns("B").SpecialCells(xlConstants, xlErrors).EntireRow.Delete
Oops:
  Application.ScreenUpdating = True
End Sub
 
Upvote 0
Give this macro a try...
VBA Code:
Sub ContributionSiteData()
  Dim R As Long, C As Long, LastRow As Long, LastCol As Long, Sites As Range
  Set Sites = Range("A2", Cells(Rows.Count, "A").End(xlUp).Offset(-1))
  LastRow = Cells(Rows.Count, "A").End(xlUp).Row
  LastCol = Cells(1, Columns.Count).End(xlToLeft).Column
  On Error GoTo Oops
  Application.ScreenUpdating = False
  For C = 2 To LastCol
    With Cells(Rows.Count, "A").End(xlUp)
      .Offset(2).Value = Cells(1, C).Value
      .Offset(3).Resize(Sites.Rows.Count).Value = Sites.Value
      .Offset(3, 1).Resize(Sites.Rows.Count).Value = Sites.Offset(, C - 1).Value
      .Offset(3 + Sites.Rows.Count, 1).Value = Cells(LastRow, C).Value
      .Offset(3, 1).Resize(Sites.Rows.Count + 1).NumberFormat = "0%"
      .Offset(3, 1).Resize(Sites.Rows.Count).Replace "", "#N/A", xlWhole, , , , False, False
    End With
  Next
  Columns("B").SpecialCells(xlConstants, xlErrors).EntireRow.Delete
Oops:
  Application.ScreenUpdating = True
End Sub
@Rick Rothstein You are a STAR! I just put the code and it does the majic!! Thank you so - so much!!
 
Upvote 0
Welcome to the MrExcel Message Board!

Here is another macro for you to consider.

VBA Code:
Sub Data_Organizing()
  Dim c As Range, lr As Long
  lr = Range("A" & Rows.Count).End(3).Row - 2
  For Each c In Range("B1", Cells(1, Columns.Count).End(1))
    c.Copy Range("A" & Rows.Count).End(3)(3)
    Union(c.Offset(1).Resize(lr).SpecialCells(2), c.Offset(1).Resize(lr).SpecialCells(2).Offset(, 1 - c.Column)).Copy Range("A" & Rows.Count).End(3)(2)
  Next
End Sub
 
Upvote 0
Solution
Welcome to the MrExcel Message Board!

Here is another macro for you to consider.

VBA Code:
Sub Data_Organizing()
  Dim c As Range, lr As Long
  lr = Range("A" & Rows.Count).End(3).Row - 2
  For Each c In Range("B1", Cells(1, Columns.Count).End(1))
    c.Copy Range("A" & Rows.Count).End(3)(3)
    Union(c.Offset(1).Resize(lr).SpecialCells(2), c.Offset(1).Resize(lr).SpecialCells(2).Offset(, 1 - c.Column)).Copy Range("A" & Rows.Count).End(3)(2)
  Next
End Sub
@DanteAmor You are amazing! Your code worked perfectly. I can't believe such a short clean code does the whole big spreadsheet that fast and clean!! Thank you so much!!
 
Upvote 0
@DanteAmor You are amazing! Your code worked perfectly. I can't believe such a short clean code does the whole big spreadsheet that fast and clean!! Thank you so much!!
Hi @DanteAmor ... While reviewing the whole content, I just noticed that running that code doesn't pick up the very last row (site code) and the value that has one value for one person. Will that be something you can fix in the code you provide? If that helps, the code @Rick Rothstein provided me picks up just the site code but not the amount for the very last row. Everything else is perfect. Thank you both!
 
Upvote 0
If that helps, the code @Rick Rothstein provided me picks up just the site code but not the amount for the very last row.
What amount for the very last row is my code not picking up? As far as I can tell by looking at your postings, my code has returned everything you showed you wanted. What is it that you think I missed?
 
Upvote 0
What amount for the very last row is my code not picking up? As far as I can tell by looking at your postings, my code has returned everything you showed you wanted. What is it that you think I missed?
Hi @Rick Rothstein .. I can't share the actual document but this is what happened. My actual data covers 148 rows (A1 being title "Contribution Site Codes" and A2 through A148 the codes (all unique). The Columns extend upto column CE. Your Code picks everything as planned except the Contribution Site Code that is in the very last row (i.e. cell A148). However it picks the percentage for the correct person (this percentage is under on cell CB148, if that helps). Your code is still valid except missing this one last code but picking the person and the rate. Thanks.
 
Upvote 0
While reviewing the whole content, I just noticed that running that code doesn't pick up the very last row (site code) and the value that has one value for one person.
You could put an image of that part of the sheet.
Or better yet, you could sample your data using the XL2BB tool minisheets, replace your data with generic data.

Check that all the data has its heading in row 1.

___
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,865
Members
449,052
Latest member
Fuddy_Duddy

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