Thread
:
I need a cell to change numbers each time it is opened up.
View Single Post
#
10
Posted to microsoft.public.excel.misc
Bcoleman75
external usenet poster
Posts: 5
I need a cell to change numbers each time it is opened up.
I woud send you the template but its at work and I'm trying to make a dummy
worksheet to just see what i can do then work on it more at my office. if you
have something you can email me that would be nice and I can look it over.
I'm needing a number system for audit purposes.
"Mike" wrote:
Or you could send you Sheet to
"Bcoleman75" wrote:
if you have a work book and don't mind sharing that would be great, i've been
working on this for almost 6 wks and there is no software out there to
generate sequnital number system and i just need a code through
vb
i
guess....thanks for all your help!!!!
"Mike" wrote:
I could send you a workbook that is working. Or yes you can just copy and
paste the code into the ThisWorkBook Module.
"Bcoleman75" wrote:
mike thank you but i am very very basic wth this vba codes etc. I don't know
where to begin, do I just copy and past what you have and it should work?
"Mike" wrote:
Only vba code can do this. Something like this will work
Private Sub Workbook_Open()
Const sAPPLICATION As String = "Excel"
Const sSECTION As String = "Invoice"
Const sKEY As String = "Invoice_key"
Const nDEFAULT As Long = 1&
Dim nNumber As Long
With ThisWorkbook.ActiveSheet
With .Range("B1")
If IsEmpty(.Value) Then
nNumber = GetSetting(sAPPLICATION, sSECTION, sKEY, nDEFAULT)
.NumberFormat = "@"
.Value = Format(nNumber, "1")
SaveSetting sAPPLICATION, sSECTION, sKEY, nNumber + 1&
End If
End With
End With
End Sub
"Bcoleman75" wrote:
I need the formula or path to i guess to make a template and each time it is
open it generates a new number, Like a invoice number. For example. in cell
A1 Invoice #
in cell B1 we would have the number 1. then save it and then when you open
the template again the #2 would be in cell B1 automatically? can anyone help?
Reply With Quote
Bcoleman75
View Public Profile
Find all posts by Bcoleman75