Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm trying to determine if a given date exists within a list of dates. The
best my limited skills could produce was to use the Match function and check for an error if the number wasn't in the list. Is there a better way? What I have looks like this: Sub Foo_TestMatch() Dim wks As Worksheet Dim rng As Range Dim x As Long, y As Double Set wks = ActiveSheet Set rng = wks.Range("A1:A10") x = 12 Err.Clear On Error Resume Next y = Application.WorksheetFunction.Match(x, rng, 0) If Err.Number < 0 Then MsgBox Err.Number Err.Clear On Error GoTo 0 End Sub (To test this, I was just using numbers, so that's why nothing is a date.) Ed |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
delete value on worksheet 2 that match values on worksheet 1 | Excel Discussion (Misc queries) | |||
Match worksheet | Excel Discussion (Misc queries) | |||
Look up and match Vendor name in one cell of worksheet from list ofmultiple Vendor names in column of other worksheet | Excel Worksheet Functions | |||
Match WORKSHEET | Excel Worksheet Functions | |||
Match 2 worksheet | Excel Worksheet Functions |