I am trying to use a simple macro that will add "1" to my counter each time the worksheet is saved. I can only figure out to add 1 when I keep the number in simple context (ie 1,2,3,4,5 ....) I am using this:
Private Sub Workbook_Open()
Sheets("Sheet1").Range("K4") = Val(Sheets("Sheet1").Range("K4")) + 1
End Sub
I need for the counter to take my form number (HA000) and each time it is saved , to add 1 (ie HA001, HA002, HA003, HA004)
Thank you for your help in advance. If you need any further clarification, I will be online.
Private Sub Workbook_Open()
Sheets("Sheet1").Range("K4") = Val(Sheets("Sheet1").Range("K4")) + 1
End Sub
I need for the counter to take my form number (HA000) and each time it is saved , to add 1 (ie HA001, HA002, HA003, HA004)
Thank you for your help in advance. If you need any further clarification, I will be online.