Help Looping

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,338
Office Version
  1. 365
Platform
  1. Windows
I have a sheet that could have a bunch of project numbers listed across row 4 starting at column H

What I need to do is have code that says look at cell I4 and if it’s not blank copy the formula in Range(“H6:H29”).Copy and copy it into I6:I29 then go to J4 and if it’s not blank Range(“H6:H29”).Copy and paste it in J6:J29 and so on….

Dim i As Long
For i = 9 To 209
'
If Len(Cells(4, i).Value) <> 0 Then
Sheets(“Actuals by Element”).Range(“H6:H29”).Copy
Sheets("Actuals by Element").Cells(4, i).Offset(26).Resize(26).Copy
Here is a problem I can’t solve because I don’t want it to include row 4
How do I get it to position itself in row 6 instead of 4

Thanks for the help
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Try...

Code:
    Dim i As Long
    
    With Sheets("Actuals by Element")
        .Range("H6:H29").Copy
        For i = 9 To 209
            If Len(.Cells(4, i).Value) <> 0 Then
                .Cells(6, i).PasteSpecial Paste:=xlPasteFormulas
            End If
        Next i
    End With
    
    Application.CutCopyMode = False
 
Upvote 0
It worked perfectly. Thanks Dominec

I was able to modify it for several other VBA tasks.

Much appreciated
 
Upvote 0

Forum statistics

Threads
1,214,621
Messages
6,120,568
Members
448,972
Latest member
Shantanu2024

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