Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Cyberwolf,
Hope this helps. Sub Find_Error() Dim wks As Worksheet 'Each worksheet in workbook Dim rngToSearch As Range Dim rngFound As Range Dim strFirstAddress As String Dim strToFind strToFind = "#N/A" For Each wks In Worksheets Set rngToSearch = wks.Cells Set rngFound = rngToSearch.Find(What:=strToFind, _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False) If Not rngFound Is Nothing Then strFirstAddress = rngFound.Address Do 'Put your code here to handle the error rngFound.Interior.ColorIndex = 6 Set rngFound = rngToSearch.FindNext(rngFound) Loop Until rngFound.Address = strFirstAddress End If Next wks End Sub Regards, OssieMac |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search Formual Error | Excel Worksheet Functions | |||
IsError error on Search | Excel Discussion (Misc queries) | |||
Error handling in a search | Excel Discussion (Misc queries) | |||
Error 1004 in search/copy | Excel Programming | |||
The search key was not found error | New Users to Excel |