Hi again:)
I'm trying to understand this code, and I still don't know why it starts with 2 on the cell A1, shouldn't it start with 1?
Private Sub CommandButton1_Click()
Dim i, j As Integer
For i = 1 To 10
For j = 1 To 5
Cells(i, j).Value = i + j
Next j
Next i
End Sub
because on my other example I have this and it starts with 1 in A1:
Private Sub CommandButton1_Click()
Dim i As Integer
For i = 1 To 10
Cells(i, 1).Value = i
Next
End Sub
Thanks :-) will greatly appreciate your help