I have made some model in Excel, where I first have to manually copy values from H24:H25 and special paste it to B29:B30 and then I have to copy values from B29:B30 to the table with this range: G30:M31, but in first loop I need to paste it to G30:G31 (it is 1st year), in second to H30:31 ... and in last loop i need to paste from B29:30 to M30:M31 (7th year)
Sub MAKRO()
Dim Year As Integer
For Year = 1 To 7
Range("K45") = Year
Range("H24:H25").Select
Selection.Copy
Range("B29:B30").Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("B29:B30").Select
Selection.Copy
Range(I cant figure out this part)
Selection.PasteSpecial Paste:=xlPasteValues
Next Year
End Sub