+ Reply to Thread
Results 1 to 23 of 23

Resetting data

Hybrid View

  1. #1
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Resetting data

    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?
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor
    Join Date
    04-24-2014
    Location
    United States
    MS-Off Ver
    Office 365 ProPlus
    Posts
    853

    Re: Resetting data

    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.

  3. #3
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Resetting data

    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

  4. #4
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    Thank you for your help both of you.
    Out of interest, how would you do it CK76?

  5. #5
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    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.

  6. #6
    Valued Forum Contributor
    Join Date
    04-24-2014
    Location
    United States
    MS-Off Ver
    Office 365 ProPlus
    Posts
    853

    Re: Resetting data

    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.

    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
    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.

    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.
    Attached Files Attached Files
    Last edited by ptmuldoon; 02-15-2018 at 12:19 PM.

  7. #7
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Resetting data

    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:

  8. #8
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    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?

  9. #9
    Valued Forum Contributor
    Join Date
    04-24-2014
    Location
    United States
    MS-Off Ver
    Office 365 ProPlus
    Posts
    853

    Re: Resetting data

    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.

  10. #10
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    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?

  11. #11
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,565

    Re: Resetting data

    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.

  12. #12
    Valued Forum Contributor
    Join Date
    04-24-2014
    Location
    United States
    MS-Off Ver
    Office 365 ProPlus
    Posts
    853

    Re: Resetting data

    Quote Originally Posted by AliGW View Post
    What's the best way to rid the registry of this tag for those of us who opened the file?
    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.

    Quote Originally Posted by jammy1066 View Post
    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?
    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.

  13. #13
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,565

    Re: Resetting data

    Neither do I and it is going. Thanks for the pointer!

  14. #14
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    I also apologise for affecting your registries

  15. #15
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,565

    Re: Resetting data

    Don't worry, but it's an important lesson to all of us!

  16. #16
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    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.

  17. #17
    Valued Forum Contributor
    Join Date
    04-24-2014
    Location
    United States
    MS-Off Ver
    Office 365 ProPlus
    Posts
    853

    Re: Resetting data

    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

  18. #18
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,565

    Re: Resetting data

    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!

  19. #19
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    Thank you both.
    So in that code, it mentions a counter worksheet? Is anything in this worksheet?

  20. #20
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Resetting data

    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.

  21. #21
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    That is perfect! Works brill!

    Thank you very much!

    How would I change the number format to 001 rather than 1?

  22. #22
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Resetting data

    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")

  23. #23
    Registered User
    Join Date
    02-13-2018
    Location
    England
    MS-Off Ver
    2013
    Posts
    28

    Re: Resetting data

    Brill thank you all!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Border resetting after data added to last row
    By drgkt in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-22-2017, 07:04 PM
  2. Resetting data to zero when a specific date is reached
    By Berean50 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-18-2014, 11:34 PM
  3. Resetting a count to zero when entering a specified item in a data range
    By Kerr01 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-26-2014, 04:48 AM
  4. [SOLVED] Excel 2007 : Resetting Data Validation
    By Daniel Brown in forum Excel General
    Replies: 2
    Last Post: 05-26-2012, 05:23 AM
  5. Resetting/clearing a data validation
    By nalgene5622 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-17-2012, 10:19 PM
  6. Resetting CutCopyMode
    By foxguy in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-07-2009, 08:28 PM
  7. Resetting Spreadsheet Data Entry Cells
    By acg in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-21-2007, 02:08 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1