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![]()
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.
You need to remove and re-apply protection within your code.
You might want to consider remove the attached file as the content looks as though it may be confidential.![]()
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 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
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
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.
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
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks