+ Reply to Thread
Results 1 to 12 of 12

"Licence" an excel spreadsheet

Hybrid View

  1. #1
    Registered User
    Join Date
    02-09-2006
    Posts
    8

    "Licence" an excel spreadsheet

    Hi all

    My specific question is:

    I have a spreadsheet that I have developed specifically to help with different bank criteria and the processing of loan applications for my role as a mortgage broker. How can I set this up so that if I let someone use my spreadsheet on their pc that it can't be distributed and used by other people?



    Further background:

    The spreadsheet, to be fair, is not that complicated, and I am sure basic by a more experienced persons standards. But it takes into account the tax rates, investment loans, rates and payments for a range of banks and has taken time for me to produce. So if people are going to want it then I would rather protect my time and interests with a license or something?
    Could I put in a hidden formula that links to a file stored locally to identify preferred users laptops??

    I am interested in learning more about making the spreadsheet more advanced perhaps, but don't really know where to begin to learn how to do so.

    Any ideas would be great on how to advance my skills or the protection of the work done, thanks.


    Vim
    Last edited by Vim; 02-24-2009 at 10:34 PM.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: "Licence" an excel spreadsheet

    You need to force users to enable macros and protect the VBA project with a long and random password. Then you can use VBA to get the drive serial number and check against a hidden sheet.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    02-09-2006
    Posts
    8

    Re: "Licence" an excel spreadsheet

    Quote Originally Posted by shg View Post
    You need to force users to enable macros and protect the VBA project with a long and random password. Then you can use VBA to get the drive serial number and check against a hidden sheet.
    Thanks, this sounds like a great idea.

    I am not that experienced with VBA. I have not had to use it to create to this point.

    Can you point me more in the right direction on actually HOW to do this.

    I pretty sure I understand what you mean, just not sure on how to navigate around vba and how I would then force excel to check the drive serial number of the user? (Note that I run this mostly on a terminal server as well, so presume this would not be a problem, I would just add the server to the list of drive serials numbers.)

  4. #4
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161

    Re: "Licence" an excel spreadsheet

    A simple thing would be to close the workbook if the windows logon doesn't match, something like this
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Dim sh As Worksheet
    Sheets("Welcome").Visible = xlSheetVisible
    For Each sh In Sheets
    sh.Visible = xlSheetVeryHidden
    Next sh
    End Sub
     
    Private Sub Workbook_Open()
    Dim sh As Worksheet
    If Environ("username") <> "Simon" Then
    Application.Quit
    Else
    For Each sh In Sheets
    sh.Visible = xlSheetVisible
    Next sh
    Sheets("Welcome").Visible = xlSheetHidden
    End If
    End Sub
    Don't forget to create a Welcome sheet, and the code goes in the ThisWorkbook module.
    Last edited by shg; 02-24-2009 at 09:49 PM. Reason: deleted spurious quote
    Not all forums are the same - seek and you shall find

  5. #5
    Registered User
    Join Date
    02-09-2006
    Posts
    8

    Re: "Licence" an excel spreadsheet

    Quote Originally Posted by Simon Lloyd View Post
    A simple thing would be to close the workbook if the windows logon doesn't match, something like this
    Don't forget to create a Welcome sheet, and the code goes in the ThisWorkbook module.

    Thanks, you guys are legends.

    That sounds doable, the only quesiton being, can I set this up so I can list users (using Or rather than =??). Otherwise I would have to change it all the time for each update and each user. If you think I can list the users, can you show me how this might look in the code that you have shown above please and thank you...

  6. #6
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161

    Re: "Licence" an excel spreadsheet

    Quote Originally Posted by Vim View Post
    Thanks, you guys are legends.

    That sounds doable, the only quesiton being, can I set this up so I can list users (using Or rather than =??). Otherwise I would have to change it all the time for each update and each user. If you think I can list the users, can you show me how this might look in the code that you have shown above please and thank you...
    Yes you can use OR but you have to understand that Excel security is NOT there to protect a product but merely to protect against inadvertent changes, any user above casual status or with a bit of determination will find a way round it. What i have given is a very simplistic version of protection, there is a lot more you can do but then you also need to understand VBA better first as you have to maintain it. The sheets are made xlSheetVeryHidden which means they can only be made visible by using vba and not from the worksheet menubar.

  7. #7
    Registered User
    Join Date
    02-09-2006
    Posts
    8

    Talking Re: "Licence" an excel spreadsheet

    Quote Originally Posted by Simon Lloyd View Post
    Yes you can use OR but you have to understand that Excel security is NOT there to protect a product but merely to protect against inadvertent changes, any user above casual status or with a bit of determination will find a way round it. What i have given is a very simplistic version of protection, there is a lot more you can do but then you also need to understand VBA better first as you have to maintain it. The sheets are made xlSheetVeryHidden which means they can only be made visible by using vba and not from the worksheet menubar.
    The option you describes will suit me, I suppose any protection can be beaten, but what you have described would be superior knowledge to what most of the likely users will have.
    I will give it a try and if i have some problems will no doubt be back to ask for more advice.

    Thanks guys, really helpful!

  8. #8
    Registered User
    Join Date
    06-09-2015
    Location
    nepal
    MS-Off Ver
    2007
    Posts
    1

    Re: "Licence" an excel spreadsheet

    hello can you teach me the process to insert this code to excel im new in this.

    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Dim sh As Worksheet
    Sheets("Welcome").Visible = xlSheetVisible
    For Each sh In Sheets
    sh.Visible = xlSheetVeryHidden
    Next sh
    End Sub

    Private Sub Workbook_Open()
    Dim sh As Worksheet
    If Environ("username") <> "Simon" Then
    Application.Quit
    Else
    For Each sh In Sheets
    sh.Visible = xlSheetVisible
    Next sh
    Sheets("Welcome").Visible = xlSheetHidden
    End If
    End Sub

  9. #9
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161

    Re: "Licence" an excel spreadsheet

    Lol, thanks for the edit shg!

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: "Licence" an excel spreadsheet

    Just trying to keep things tidy, Simon

  11. #11
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161

    Re: "Licence" an excel spreadsheet

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

    If you want to thank us then please click on the Blue scales to the right of any of our posts!

  12. #12
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,943

    Re: "Licence" an excel spreadsheet

    rojan,
    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    Ben Van Johnson

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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