Sorry, might be my fault with the 2 x fullstops in the SELECT line.
There is ONLY one.
1. Make sure the Button name is correct, i used Button1, but this need not be the case if you
have more than 1 already
2. If you right click the button and select Asign Macro the code between the grey lines should have:
Sub Button1_Click()
With Sheet1
..Select
If ActiveCell.Value <> "" Then
ActiveCell.Value = ActiveCell.Value + 1
End If
End With
End Sub
3. Make sure there is only ONE fullstop in the line .Select
ctm
It keeps saying the ..Select thing is a syntax error. It's highlighted in
blue and the Sub Button1_Click() line is highlighted yellow. It also
sometimes says error: expected:case.