something like the below might work:
'=====================================
Private Sub CMD1_Click()
Dim myRow As Integer
myRow = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
If Range("A1") = "" Then
Range("A1") = "06/0242"
Else
Cells(myRow + 1, 1) = "06/024" & myRow + 2
End If
End Sub
=====================================
Rgds
J
On Oct 18, 1:46 pm, Zaahir <Zaa...@discussions.microsoft.com> wrote:
> Hi
> here's the scenario.......
> Default number = 06/0241 ....
> i have a userform (US1) with a button (CMD1), upon executing CMD1 ColumnA
> cellA1 in the worksheet must be selected and a number inserted i.e. 06/0241 +
> 1. thiss cell should now display 06/0242, upon 2nd execution of CMD cellA2
> should display 06/0243 etc...
> is this posible to be done usin code....
> Please assist
|