+ Reply to Thread
Results 1 to 17 of 17

Protection Stops Macro From Running

Hybrid View

  1. #1
    Registered User
    Join Date
    01-24-2007
    Posts
    13

    Protection Stops Macro From Running

    Hi All,

    I have a very simple request. I want to make the worksheet protected, however, when I protect the worksheet the macro will not run. Does anyone have any useful tips. Many thanks in anticipation.

    Keith
    Last edited by Keith Burgess; 06-10-2008 at 12:26 PM.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    You need to remove and re-apply protection within your code.

    Sub CourseFinder()
    
       Dim DstWks As Worksheet
       Dim FirstAddress As String
       Dim SearchCell As Range
       Dim SearchData As Variant
       Dim SearchRng As Range
       Dim SrcWks As Worksheet
       
       ActiveSheet.Unprotect
       
         SearchData = InputBox("Enter the word or word* you want to find.")
            If SearchData = "" Then Exit Sub
    
         Set SrcWks = ActiveSheet
         Set SearchRng = SrcWks.UsedRange
    ' remove hilite from previous search    
    SearchRng.Offset(1).Resize(SearchRng.Rows.Count).EntireRow.Interior.ColorIndex = xlNone
             
         Set SearchCell = SearchRng.Find(What:=SearchData, After:=Cells(1, 1), _
                            LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, _
                            SearchDirection:=xlNext, MatchCase:=False)
                            
         If Not SearchCell Is Nothing Then
            FirstAddress = SearchCell.Address
              Do
                  SearchCell.EntireRow.Interior.ColorIndex = 6
                  SearchCell.Cells(SearchCell.Row, "L") = 1     '<<<<< Change Column Here
                Set SearchCell = SearchRng.FindNext(SearchCell)
              Loop While Not SearchCell Is Nothing And SearchCell.Address <> FirstAddress
         End If
         
       ActiveSheet.Protect
       
    End Sub
    You might want to consider remove the attached file as the content looks as though it may be confidential.
    Cheers
    Andy
    www.andypope.info

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    You could possibly use Protect with UserInterface, see an example here

    http://www.excel-it.com/vba_examples.htm
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  4. #4
    Registered User
    Join Date
    01-24-2007
    Posts
    13
    Hi Andy,

    Many thanks for your prompt reply. I have cut and pasted your ammended macro but it doesn't seem to work as before, where each line containing the search criteria was highlighted in yellow. Can you help me further, please?

    Best regards
    Keith

  5. #5
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    Works for me.

    Run the macro and search for time.

    EDIT: Confidential file removed
    Last edited by Andy Pope; 06-11-2008 at 07:55 AM.

  6. #6
    Registered User
    Join Date
    01-24-2007
    Posts
    13
    Hi Andy,

    Sorry it doesn't work for me. When I run the nmacro and search for time it takes me to a line within the macro. Can you advise further, please.

    Kind regards
    Keith

+ 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