Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i'm trying to search in a hidden worksheet that i've created for use
names. below is the code but it doesn't work. can someone please hel me out? btw, i'm really curious as to where i can find more informatio about that find method and for that matter, all the method's that ar used in excel. the excel help file is very lacking in information. i doesn't list nearly as many parameters for the find function as i'v seen in examples here in the forums. Public Function VerifyPW(Name As String) As Boolean Dim Found As WorksheetFunction With Worksheets(5).Range("A1:A30") Set Found = .Find(What:=Name, _ LookIn:=xlValues, _ LookAt:=xlPart, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=True) End With VerifyPW = Not (Found Is Nothing) VerifyPW = True End Functio -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find First Non blank cell than find column header and return that value | Excel Worksheet Functions | |||
where to put results of find operation in find and replace functio | Excel Worksheet Functions | |||
Despite data existing in Excel 2002 spreadsheet Find doesn't find | Excel Discussion (Misc queries) | |||
'find' somtimes can't find numbers. I folowd the 'help' instructi. | Excel Worksheet Functions | |||
backwards find function to find character in a string of text | Excel Programming |