Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Greetings,
TIA for any help I have a worksheet range: 01/01/1997, 01/02/1997, etc. This is formatted as "mmm-yy" to give Jan-97, Feb-97, etc. The following code from Reed Jacobson's 'Step by Step' book fails to find the cell showing "May-97" as intended: Dim myFind As Range Set myFind = Rows(1).Find(What:="5/1/1997", _ After:=Range("A1"), _ LookIn:=xlFormulas _ , LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False) Range("C1", myFind.Offset(, -1)).EntireColumn.Hidden = True Changing the "5/1/1997" to "01/05/1997" etc. has no effect (myFind =Nothing, still) Changing to "May-97" and changing argument xlformulas to xlvalues works OK but is inflexible and puts me at the mercy of the cell formatting. What is the secret with dates? David |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
compare 2 tables of dates to find the preceding dates | Excel Worksheet Functions | |||
Code to find code | Excel Discussion (Misc queries) | |||
what is the code for calender dates? | Excel Discussion (Misc queries) | |||
How do I find the earliest dates in a range of dates? | Excel Worksheet Functions | |||
to find number of days between 2 dates using vba code in excel | Excel Discussion (Misc queries) |