Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]() I have a user form where the user enters a site number. in the spreadsheet i have a range names "ValidSites". After the user enters a site number and clicks on a button, i would like to validate that that site appears in the ValidSites list. onclick event() if txtSiteNumber is found in Range(ValidSites) then msgbox("found") else msgbox("notfound") endif endsub what would be the code for the if statement? thanks in advance -- tkaplan ------------------------------------------------------------------------ tkaplan's Profile: http://www.excelforum.com/member.php...o&userid=22987 View this thread: http://www.excelforum.com/showthread...hreadid=478305 |
#2
![]() |
|||
|
|||
![]()
t,
If Not IsError(Application.Match(txtSiteNumber, _ Range("ValidSites"), False)) Then MsgBox ("Found") Else MsgBox ("Not found") End If HTH, Bernie MS Excel MVP "tkaplan" wrote in message ... I have a user form where the user enters a site number. in the spreadsheet i have a range names "ValidSites". After the user enters a site number and clicks on a button, i would like to validate that that site appears in the ValidSites list. onclick event() if txtSiteNumber is found in Range(ValidSites) then msgbox("found") else msgbox("notfound") endif endsub what would be the code for the if statement? thanks in advance -- tkaplan ------------------------------------------------------------------------ tkaplan's Profile: http://www.excelforum.com/member.php...o&userid=22987 View this thread: http://www.excelforum.com/showthread...hreadid=478305 |
#3
![]() |
|||
|
|||
![]() can these cells be hidden while running this code? the sheet is visible but the columns that i am searching are hidden. -- tkaplan ------------------------------------------------------------------------ tkaplan's Profile: http://www.excelforum.com/member.php...o&userid=22987 View this thread: http://www.excelforum.com/showthread...hreadid=478305 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Filter not finding all cells in columns | Excel Worksheet Functions | |||
Finding Duplicate Names from Different Lists... | Excel Discussion (Misc queries) | |||
finding the second largest number in a list | Excel Discussion (Misc queries) | |||
Finding Median if a value = 1.. help! | Excel Worksheet Functions | |||
Finding Cell References | Excel Discussion (Misc queries) |