as you can see I want to repeat it each time going to the next value... is there any easier way to do this?
I have tried the loop function but I don't know how to get this to work so that it executes to the next column each time for the same row.
Sub rebuild()
If D28 > 2600000 Then
Range("E$110:I$120").Select
Selection.Copy
Range("E18:Il28").Select
ActiveSheet.Paste
End If
If E28 > 2600000 Then
Range("E$110:I$120").Select
Selection.Copy
Range("F18:Jl28").Select
ActiveSheet.Paste
End If
If F28 > 2600000 Then
Range("E$110:I$120").Select
Selection.Copy
Range("G18:Kl28").Select
ActiveSheet.Paste
End If
If G28 > 2600000 Then
Range("E$110:I$120").Select
Selection.Copy
Range("H18:Ll28").Select
ActiveSheet.Paste
End If
End sub