Have a macro that I need to work on every other column of my worksheet

Pandrade

New Member
Joined
Apr 13, 2020
Messages
36
Office Version
  1. 365
Platform
  1. Windows
Hi,
I need to make a macro work on every other column of my worksheet. How can I accomplish this. The worksheet has hundreds of columns and I need the macro to work all the way to the last column.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
You haven't told us what you actually want to do in the columns but this code loops through every second column starting with column 1.
VBA Code:
Sub Test()
    Application.ScreenUpdating = False
    Dim x As Long, lCol As Long
    lCol = ActiveSheet.Cells(1, Columns.Count).End(xlToLeft).Column
    For x = 1 To lCol Step 2
        'your code here
    Next x
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
This is the macro I want to work on every other column. It starts with the N column, so the macro should then work on the P column, and so on every other column to the last of the columns. Can you help?

Sub CopyCells()
Dim Cl As Range
For Each Cl In Range("N2", Range("N" & Rows.Count).End(xlUp))
If Cl.Offset(, 1).Value > 1 Then
Cl.Copy Range("N" & Rows.Count).End(xlUp).Offset(1).Resize(1 * Cl.Offset(, 1) - 1)
End If
Next Cl

End Sub
 
Upvote 0
Try:
VBA Code:
Sub Test()
    Application.ScreenUpdating = False
    Dim x As Long, LastRow As Long, lCol As Long, Cl As Range
    LastRow = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    lCol = ActiveSheet.Cells(1, Columns.Count).End(xlToLeft).Column
    For x = 14 To lCol Step 2
        For Each Cl In Range(Cells(2, x), Cells(LastRow, x))
            If Cl.Offset(, 1).Value > 1 Then
                Cl.Copy Range("N" & Rows.Count).End(xlUp).Offset(1).Resize(1 * Cl.Offset(, 1) - 1)
            End If
        Next Cl
    Next x
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
It almost works. The macro is copying the values to column N only. I need the Salaries to be copied to the end of each corresponding salary column. For example:
Salary Quantity Salary Quantity Salary Quantity
21000 2 15000 3 36000 1
18000 1 27000 2 48000 4
40000 3 15000 60000 2
21000 15000 48000
40000 27000 48000
40000 48000
60000
 
Upvote 0
It should look like this:
1586802070804.png
 
Upvote 0
How about
VBA Code:
Sub Pandrade()
   Dim Cl As Range
   Dim UsdCols As Long, i As Long
   
   UsdCols = Cells(1, Columns.Count).End(xlToLeft).Column
   For i = 14 To UsdCols Step 2
      For Each Cl In Range(Cells(2, i), Cells(Rows.Count, i).End(xlUp))
         If Cl.Offset(, 1).Value > 1 Then
            Cl.Copy Cells(Rows.Count, i).End(xlUp).Offset(1).Resize(1 * Cl.Offset(, 1) - 1)
         End If
      Next Cl
   Next i
End Sub
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,395
Members
449,446
Latest member
CodeCybear

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