So I acquired this VBA code to increment a number each time the workbook is opened. It works but obviously it saves the previous number so it can add to it next time it's opened.
I'm just enquiring how to access that data to reset it to 0?
So I acquired this VBA code to increment a number each time the workbook is opened. It works but obviously it saves the previous number so it can add to it next time it's opened.
I'm just enquiring how to access that data to reset it to 0?
Well,
I'm not a big fan of the way this is being done. First, its is writing and storing the number into your Windows Registry. You can see that in the code here:
The second issue here is that the code with start with 1, and count up 2, 3, etc separately for each user that opens it. so not sure if actually want to that to happen when sharing the document.
Personally, I would just have a hidden cell someplace and just update that cell value on each file open. And you hide that cell/sheet so others can't see it. make it "Very Hidden" from users.
![]()
Private Sub Workbook_Open() Const sAPPLICATION As String = "Excel" Const sSECTION As String = "Workbook" Const sKEY As String = "Open_key" Const nDEFAULT As Long = 1& Dim nNumber As Long 'Saves Data In 'regedit, HKEY_Current_User, Software, VB & VBA Program Settings, Excel, Invoice, Invoive Key 'Auto Number' With ThisWorkbook.Sheets("Sheet1") With .Range("B1") nNumber = GetSetting(sAPPLICATION, sSECTION, sKEY, nDEFAULT) .NumberFormat = "@" .Value = Format(nNumber, "000") SaveSetting sAPPLICATION, sSECTION, sKEY, nNumber + 1& End With End With End Sub
Last edited by ptmuldoon; 02-15-2018 at 12:07 PM.
Hmm, I don't like the method used.
At any rate, this edits Registry to enter Open_Key record and store it there.
To reset, in your Windows start menu, type in "regedit" and navigate to..
HKEY_CURRENT_USER\Software\VB and VBA Program Settings\Excel\Workbook
There you will find Open_Key Name. Edit the value for it.
"Progress isn't made by early risers. It's made by lazy men trying to find easier ways to do something."
― Robert A. Heinlein
Thank you for your help both of you.
Out of interest, how would you do it CK76?
The code is for a voucher and each voucher has a reference number which will need to increment by 1 for each user that opens the workbook.
I would do something like this. But note,the number is only updated if you save the workbook. So opening and closing will not update the value. Since the original code saves to registry, that code updates the value regardless if saved.
if you open this sample and the average user goes to 'unhide' the counter worksheet, they will not see it. You need to make it visible via the VBA Editor.![]()
Private Sub Workbook_Open() Worksheets("Counter").Range("A1").Value = Worksheets("Counter").Range("A1").Value + 1 Worksheets("Sheet1").Range("A1").Value = Worksheets("Counter").Range("A1").Value End Sub
EDIT. I think you need this to start at 1 and count separate for each separate user? If so, the above will not do quite what you want.
Last edited by ptmuldoon; 02-15-2018 at 12:19 PM.
Exact method will depend on workbook structure and what record you will keep, how often vouchers are issued by each user etc.
But, I'd likely keep a table in hidden sheet, where user name and voucher count is tracked and incremented.
For an example use Environ("UserName") to verify who's logged in and issuing voucher. And increment corresponding value.
Edit: I'd also add Event code on Workbook_BeforeClose to auto save workbook. Or add code to save when voucher is issued.
Last edited by CK76; 02-15-2018 at 12:26 PM. Reason: See Edit:
Can I just ask with the code I already have, you said it saves to the windows registry?
If this code is distributed to other users on other computers will the number reset to 0 as it's a different computer?
Yes, that is correct.
Every windows pc will start at 0, and would probably not work on a mac or other machine.
You can sense we are recommending to not write to the registry. Doing so can lead to letting someone writing malicious code.
Right, well I am very much a VBA novice I'm sorry to say.
Would you be willing provide some code that could be used so that I could distribute this to other computers and users for them to use?
What's the best way to rid the registry of this tag for those of us who opened the file?
Ali
Enthusiastic self-taught user of MS Excel who's always learning!
Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.
NB: as a Moderator, I never accept friendship requests.
Forum Rules (updated August 2023): please read them here.
The Registry Key it created is called "Open_key" and is located at
HKEY_Current_User, Software, VB & VBA Program Settings, Excel, Workbook.
So on your window machine, press start and type regedit. Then navigate to that key and you can remove it. Note, this particular code and key addition is not harmful. I just don't like someone else's code modifying my registry.
Jammy...... You need to provide us some more information. Do you want to the Invoice Number to start at 0 for all users? Or should the file just continue to count up each time anyone opens the file?
I provided a brief sample on the number counting up earlier and then CK_76 mentioned perhaps better to 'force' save the file on a workbook close. But we need to know what you are actually looking for.
Last edited by ptmuldoon; 02-16-2018 at 08:40 AM.
Neither do I and it is going. Thanks for the pointer!
I also apologise for affecting your registries
Don't worry, but it's an important lesson to all of us!![]()
So this project is for a voucher which will be distributed throughout the business, so what I need is that when the document is opened a voucher reference number will increment by one ready for the next person to fill in their information.
I would send the actual document but I'm afraid its sensitive information.
So the first person to open the document, the count will go to 1. Then the next person 2 and the third 3 etc etc.
The document will likely be on our local intranet and I obviously can't guarantee that people will save the document so a force save might be a good idea.
Again I apologise for being difficult.
We just want to help get you want want.
So this code below just auto saves the file before the user closes it. You can just add the Workbook_BeforeClose info below into the earlier sample. Remember this code goes in the "ThisWorkbook" code in your VBA editor.
![]()
Private Sub Workbook_BeforeClose(Cancel As Boolean) ThisWorkbook.Save End Sub Private Sub Workbook_Open() Worksheets("Counter").Range("A1").Value = Worksheets("Counter").Range("A1").Value + 1 Worksheets("Sheet1").Range("A1").Value = Worksheets("Counter").Range("A1").Value End Sub
For the record, I don't believe that anybody thinks you are being difficult - in fact, you are doing just fine. You are learning and you are open to suggestion and help. All good - top marks!
Thank you both.
So in that code, it mentions a counter worksheet? Is anything in this worksheet?
It doesn't need anything else. Code uses a cell in that sheet to keep track of incremented number.
But you'd keep this sheet very hidden (to do that, go to VB editor and change worksheet's visible property to "xlSheetVeryHidden".
So no one accidentally edits this sheet.
That is perfect! Works brill!
Thank you very much!
How would I change the number format to 001 rather than 1?
There are several ways.
I'd just format the cell with custom number format "000".
If you need more leading zero add more as you need it.
Alternately you can change code line to...
![]()
Worksheets("Sheet1").Range("A1").Value = Format(Worksheets("Counter").Range("A1").Value, "000")
Brill thank you all!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks