Hello guys,

why does this macro go to the cell A1 automatically and gives me this table:

Sub Mult()
For i = 2 To 6
    For j = 2 To 6
        Cells(i, j) = Cells(1, j) * Cells(i, 1)
    Next j
Next i
End Sub

tar.PNG

I appreciate your answer!