Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() If I match a named range ("Criteria_12") I get the correct result but if I assign the cell value to a variable I get an #N/A error. It makes no difference if I declare (DIM) the variables dt or curr_date. Why? TIA dt = Range("Criteria_12") curr_date = DateSerial(Year(dt), Month(dt), Day(dt)) ' This works OK ....... Range("A5") = Application.Match(Range("Criteria_12"), Range("1:1"), 0) ' These return error conditions ....WHY? Range("A6") = Application.Match(dt, Range("1:1"), 0) Range("A7") = Application.Match(curr_date, Range("1:1"), 0) |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
INDEX - MATCH with three variables | Excel Worksheet Functions | |||
Error in setting formula (Match) with dynamic variables | Excel Programming | |||
Please Help! vlookup & match with multiple variables | Excel Worksheet Functions | |||
Finding two variables on the same row to match function | Excel Programming | |||
Index Match With 3 Variables | Excel Worksheet Functions |