+ Reply to Thread
Results 1 to 16 of 16

find a calculated date in a range

Hybrid View

  1. #1
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    find a calculated date in a range

    OK, now I'm asking:

    I want to find a date in a range. Using this code from Ron de Bruin's site works just fine.

    If you have date's in column A then this example will select the cell with today's date.
    source: http://www.rondebruin.nl/find.htm#select

    Sub Find_Todays_Date()
        Dim FindString As Date
        Dim Rng As Range
        FindString = CLng(Date)
        With Sheets("Sheet1").Range("A:A")
            Set Rng = .Find(What:=FindString, _
                            After:=.Cells(.Cells.Count), _
                            LookIn:=xlFormulas, _
                            LookAt:=xlWhole, _
                            SearchOrder:=xlByRows, _
                            SearchDirection:=xlNext, _
                            MatchCase:=False)
            If Not Rng Is Nothing Then
                Application.Goto Rng, True
            Else
                MsgBox "Nothing found"
            End If
        End With
    End Sub
    But only if the dates have been manually entered. If I have a list of dates with a manually entered date in A1 and then =A1+1 in A2, copied down, the code tells me "Nothing found".

    I've tried changing the LookIn: to xlValues, but that did not help.

    What am I not getting? Is the date format important?

    holding my breath...

  2. #2
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: find a calculated date in a range

    See comments in the code

    Option Explicit
    
    Sub Find_Todays_Date()
        Dim FindString As Date
        Dim Rng As Range
        FindString = CLng(Date)
        With Sheets("Sheet1").Range("A:A")
            Set Rng = .Find(What:=FindString, _
                            After:=.Cells(1, 1), _ 'changed here
                            LookIn:=xlValues, _ 'changed here
                            LookAt:=xlWhole, _
                            SearchOrder:=xlByRows, _
                            SearchDirection:=xlNext, _
                            MatchCase:=False)
            If Not Rng Is Nothing Then
                Application.Goto Rng, True
            Else
                MsgBox "Nothing found"
            End If
        End With
    End Sub
    Palmetto

    Do you know . . . ?

    You can leave feedback and add to the reputation of all who contributed a helpful response to your solution by clicking the star icon located at the left in one of their post in this thread.

  3. #3
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: find a calculated date in a range

    Nice! Thank you! Am I right in assuming that the problem lies with the different cell contents? i.e. the first cell is a value and the next few cells are formulas. Seems that the first cell content determines what is being looked for. Is that it?

    How does one know these things? They're certainly not in the help files!!

    cheers
    Last edited by teylyn; 05-20-2010 at 09:21 PM.

  4. #4
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: find a calculated date in a range

    Hmmm, now comes the But:

    Format does seem to matter. If the list of dates shows in the format 24/05/2010, the date will be found. With the format 24-May-2010 it will not be found.

    What gives?

  5. #5
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: find a calculated date in a range

    OK,

    riddle me this:

    While Palmetto's suggestion fixed the find, it works only on specific formats. See attached.

    Macro FindInA works fine on column A, which is formatted with the first Date format in the Date category, the option with the *, which means that it takes the OS regional settings into account.

    Macro FindInC does not work on column C, which is formatted with the second Date format in the Date category, which also has the * asterisk.

    Macro FindInE does not work on column E, which looks exactly the same as column A (at least with my regional settings. The column is formatted to dd/mm/yyyy)

    Why is the date format so important, even though the parameter LookIn:=xlValues is set?

    Or is this something that I'm only seeing because my locale settings are not US?

    Any comments welcome.
    Attached Files Attached Files

  6. #6
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: find a calculated date in a range

    for column E range format as eg .. 14/3/2001
    Sub FindInE()
        Dim FindString As String, FindString1 As Date
        Dim Rng As Range
        FindString1 = CLng(Date)
        FindString = FindString1
        With Sheets("Sheet1").Range("E:E")
            Set Rng = .Find(What:=FindString, _
                            After:=.Cells(1, 1), _
                            LookIn:=xlValues, _
                            SearchOrder:=xlByRows, _
                            SearchDirection:=xlNext, _
                            MatchCase:=False)
            If Not Rng Is Nothing Then
                Application.Goto Rng, True
            Else
                MsgBox "Nothing found"
            End If
        End With
    
    End Sub
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

  7. #7
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: find a calculated date in a range

    column c format eg friday, 21 may 2101
    Sub FindInC()
         Dim FindString As String, FindString1 As Date
        Dim Rng As Range
        FindString1 = CLng(Date)
        Debug.Print FindString1
        
        FindString = Format(FindString1, "dddd, d mmmm yyyy")
        Debug.Print FindString
        With Sheets("Sheet1").Range("C:C")
            Set Rng = .Find(What:=FindString, _
                            After:=.Cells(1, 1), _
                            LookIn:=xlValues, _
                            LookAt:=xlWhole, _
                            SearchOrder:=xlByRows, _
                            SearchDirection:=xlNext, _
                            MatchCase:=False)
            If Not Rng Is Nothing Then
                Application.Goto Rng, True
            Else
                MsgBox "Nothing found"
            End If
        End With
    
    End Sub

  8. #8
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: find a calculated date in a range

    Hi teylyn,
    The code added and cells formated
    Attached Files Attached Files

  9. #9
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: find a calculated date in a range

    Why is the date format so important, even though the parameter LookIn:=xlValues is set?

    Or is this something that I'm only seeing because my locale settings are not US?
    Inexplicably, I am getting the same results, even with including SearchFormat:=False in the code. The date format should make no difference since dates are serial numbers and we're looking in values. (Using =A1 [ or C1, E1] in another cell and setting it to general format, they all all return the same date serial, which shows the underlying value is the same in all three columns)

    I've tried a number of approaches and none of them have been successful. Ideas anyone?

    @Pike
    Using your sample workbook, the code is still not finding the current Date in columns C and E.
    Last edited by Palmetto; 05-22-2010 at 07:07 AM.

  10. #10
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: find a calculated date in a range

    wow .....it is in mine so must be a local setting

  11. #11
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: find a calculated date in a range

    its 2am and I'm off to the beach to go fishing
    but in the code have a look at the debiug,print value in immediate window and change the cell formats and =format(date,dd,d,mm,yyyy) to suit

  12. #12
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: find a calculated date in a range

    Basically that means that if the user changes the date format, the macro will bomb.

    The date can be formatted whatever way, if the cell holds the manually entered date, using LookIn:=xlFormulas. Then the date serial will be the basis of the Find.

    If the date is calculated, the xlFormulas does not cut it, because the formula is =A1+1 instead of the date serial. So now the Find has to go after a string, and the string has to match the format of the dates.

    Not ideal.

    Thanks all. Learned something.

  13. #13
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: find a calculated date in a range

    Not ideal
    but since find is so fast you have time to seach all the different date formats

  14. #14
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: find a calculated date in a range

    Might be faster to query the date format of the first cell in the range and then model the search string after that.

    If I knew how to do this, that is. I'm sure I'll find out when my eyesight returns.

  15. #15
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: find a calculated date in a range

    I had a look at this yesterday and FWIW concur that unless the date format used on the sheet is the standard short format of that locale the Find would appear to fail.

    I confess I rarely use Find for dates but appreciate that for matrices it's the most obvious way.

    I don't have an answer for you I'm afraid but I would make the point that unless you can be sure all cells within the column share the same format - basing the criteria on the format of the first cell remains risky.

    I would add that if you're using a Vector for the search range then you could as easily use Match (using Long as criteria).
    The Match of Long will return the appropriate row/column etc irrespective of cell formatting.
    (use Application.Match and store result as Variant if you wish to cater for errors without handler - ie IsNumeric test against result).

  16. #16
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: find a calculated date in a range

    Thanks DO,

    I came from a MATCH angle and then got pointed to FIND as an alternative. With all the kerfuffle around date formats coming into the equation (and also, yes, I cannot assume that the first cell is representative of the format of the other cells in the column), I think I'll go back to MATCH.

    Sometimes I feel that VBA and I don't marry well. Every time I venture into a new topic, I seem to hit a sore spot.

    Thanks all for your help.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1