+ Reply to Thread
Results 1 to 7 of 7

Password for drop down list

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Password for drop down list

    Hi

    I able to create data validation drop down list etc. I want to assign passwords to different text strings (users) in the list. I have tried searching and found this thread on HERE. Its perfect for myself and confident i can update it as necessary.

    I was hoping to make it more user friendly for other colleagues. I was hoping my validation list could be in separate file with usernames in row A and their passwords in row B. My intention would be the file with validation list would be password protected for only the boss to update.

    Thanks in advance.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Password for drop down list

    Hello welshman010,

    You can use a 2 workbook approach. he dat validation list can be in a separate workbook. You would need to make this workbook available to all users and it can be password protected to allow the "boss" to change the list.

    Here is a link that describes in detail how to set this up.

    Using a validation list in another worksheet or workbook
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Re: Password for drop down list

    Thanks for reply. I'm able to do the list. But:

    Const Mike As String = "Mike1"
    Const Alan As String = "Alan1"
    Const Bob As String = "Bob1"
    Const Pete As String = "Pete1"
    
    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim cell As Range
    Dim pwd As String
    Dim Oops As Boolean
    
    Application.EnableEvents = False
    
    For Each cell In Target
        If Not Intersect(cell, Range("B7")) Is Nothing And cell <> "" Then
            pwd = Application.InputBox("Password for " & cell & ":", _
                        "Enter Password", Type:=2)
            Select Case cell.Value
                Case "Mike"
                    If pwd <> Mike Then Oops = True
                Case "Bob"
                    If pwd <> Bob Then Oops = True
                Case "Alan"
                    If pwd <> Alan Then Oops = True
                Case "Pete"
                    If pwd <> Pete Then Oops = True
            End Select
            
            If Oops Then
                MsgBox "Bad password"
                cell = ""
            End If
        End If
    Next cell
    
    Application.EnableEvents = True
    End Sub
    Is there a way of not having to manually input names and passwords into this code. Instead it will look at column A and B in the other file (where my validation list will be).

    Thanks

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Password for drop down list

    Hello welshman010,,

    The article I posted describes Data Validation Drop Downs. What you have posted is a VBA macro that responds to cell changes.

    You don't need a VBA macro. You simply need to follow what the article says about setting up a list in another workbook which, as I said before, can be password protected. You can then add a refernce to this other workbook's list when you create the Data validation Drop Downs in the workbook for the users.

  5. #5
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Re: Password for drop down list

    Hi Leith Ross. Please excuse me if I just being dum. Its the password for each name in the validation list I want to achieve. Without having to manually put the passwords in the code above. There is a link to an example file in original post.

    In code above, to select mike from the list you have to input Mike1 as password first. So instead of these lines

    Const Mike As String = "Mike1". It will look at A1 for name B1 for password, A2 & B2 etc etc. My validation list code be from A1:A30 and corresponding passwords for those names would be in B1:B30

  6. #6
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,248

    Re: Password for drop down list

    Leith has provided a link explaining how you can use an external workbook as the source for your data validation AND the password check. However, you need to throw away the original code with the hard coded passwords. No good any more.

    You would need a Workbook Open event that would open the passwords file. Then, you'd use a Worksheet Change event to monitor the password drop down cell. That would, in turn, use a VLOOKUP to return the password for you to check. If it's ok, you continue. Otherwise you loop and repeat.


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  7. #7
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Re: Password for drop down list

    Thanks for reply. Very new to excel. Shall read up on how to achieve the above

+ 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. change drop down list with password required
    By gccch in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-04-2014, 02:58 PM
  2. [SOLVED] Password for Drop Down List
    By JurekPol in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-30-2013, 08:20 PM
  3. Populate Drop-down list based on selection from previous drop-down list
    By Diventus in forum Excel - New Users/Basics
    Replies: 14
    Last Post: 01-11-2013, 10:55 AM
  4. Populate Drop-down list based on selection from previous drop-down list
    By poison_stone in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 12-11-2012, 06:10 PM
  5. Request of Password on different selections of Drop down list
    By ron2k_1 in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 02-01-2011, 05:35 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