I want to add and change file version in cell P76 every time there is a change in file.
I tried this function but it is showing Excel version and it is not changing.
Function ExcelVersion()
ExcelVersion = Application.Version
End Function
and in cell P76 (Sheet2)
=ExcelVersion()
I want it to show like VERSION 001 and every time (sheet2) update of change it change to next eg VERSION 001 to VERSION 002 and so on and in cell P77 (Sheet2) Dates and time of update.
I also try to add this
Private Sub submit_Click()
Dim i As Integer
i = 1
Cells(P76).value = "VERSION 00" & i + 1
End Sub
but not working