Consolidating Data into a Single Column

stevembe

Well-known Member
Joined
Mar 14, 2011
Messages
501
Firstly thank you for taking the time to read. The issue I have is that I have been given a spreadsheet that is a report generated from a survey but the data is all over the place and spans across different columns.

For example Column A is labelled Age Range and has data entries for those aged 20 – 25. The problem I have is that Column B is also labelled Age Range and has entries for those aged 26 -30. Similarly Column C is also labelled Age Range and has entries for those aged 31 to 35 and again Column D labelled Age Range with those 36 to 40. Is there any way I can get all of this data into Column A?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Are you saying that you just want to take all the data from columns B and C and copy to the bottom of column A?

If so, try this:
Code:
Sub MyCopy()

    Dim lastRowA As Long
    Dim lastRow As Long
    Dim myCol As Long
    Dim firstCol As Long
    Dim lastCol As Long
    
'   Set first and last columns to move
    firstCol = 2    '(column B)
    lastCol = 3     '(column C)
    
    Application.ScreenUpdating = False
    
'   Loop through columns B and C
    For myCol = firstCol To lastCol
'       Find last row with data in column A
        lastRowA = Cells(Rows.Count, "A").End(xlUp).Row
'       Find last row with data in current column
        lastRow = Cells(Rows.Count, myCol).End(xlUp).Row
'       Copy data to bottom of column A, starting with row 2 (skip header)
        Range(Cells(2, myCol), Cells(lastRow, myCol)).Copy Cells(lastRowA + 1, "A")
    Next myCol
    
'   Delete columns
    Range(Cells(1, firstCol), Cells(1, lastCol)).EntireColumn.Delete Shift:=xlToLeft

    Application.ScreenUpdating = True

End Sub
 
Upvote 0
Are you saying that you just want to take all the data from columns B and C and copy to the bottom of column A?

If so, try this:
Code:
Sub MyCopy()

    Dim lastRowA As Long
    Dim lastRow As Long
    Dim myCol As Long
    Dim firstCol As Long
    Dim lastCol As Long
    
'   Set first and last columns to move
    firstCol = 2    '(column B)
    lastCol = 3     '(column C)
    
    Application.ScreenUpdating = False
    
'   Loop through columns B and C
    For myCol = firstCol To lastCol
'       Find last row with data in column A
        lastRowA = Cells(Rows.Count, "A").End(xlUp).Row
'       Find last row with data in current column
        lastRow = Cells(Rows.Count, myCol).End(xlUp).Row
'       Copy data to bottom of column A, starting with row 2 (skip header)
        Range(Cells(2, myCol), Cells(lastRow, myCol)).Copy Cells(lastRowA + 1, "A")
    Next myCol
    
'   Delete columns
    Range(Cells(1, firstCol), Cells(1, lastCol)).EntireColumn.Delete Shift:=xlToLeft

    Application.ScreenUpdating = True

End Sub

Thanks but unfortunately the data spans out to Column AG so this wouldn't work but thank you for your time. Useful code I will use at some point.
 
Upvote 0
Thanks but unfortunately the data spans out to Column AG so this wouldn't work but thank you for your time. Useful code I will use at some point.
Not a problem. That is why I made the code as generic as I did, so you can easily edit it to accommodate different situations. So my code will have no problem handling this.

Column "AG" is the 33rd column. So all you need to do is make one small change to my code, changing:
Code:
    lastCol = 3
to
Code:
    lastCol = 33
Give it a try!
 
Last edited:
Upvote 0
I assumed that in consolidating the data from 33 columns down to 1, you would want to delete all those columns and just leave the one. Is that not what you want to do?
If not, remove the last line of code under 'Delete columns
 
Last edited:
Upvote 0
I assumed that in consolidating the data from 33 columns down to 1, you would want to delete all those columns and just leave the one. Is that not what you want to do?
If not, remove the last line of code under 'Delete columns

Working Perfectly now, thank you so much for your time, it really is appreciated.
 
Upvote 0

Forum statistics

Threads
1,215,632
Messages
6,125,909
Members
449,274
Latest member
mrcsbenson

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