VBA WorksheetFuction.Match - Working with pulled Date from MID function

Lres81715

Board Regular
Joined
Aug 26, 2015
Messages
147
Hi all,

I'm having an issue with my VBA code not "finding" the match in the correct column.

When I use the formula =MATCH(MID(Sheet3!A4,13,10)*1,A1:AE1,0)
it gives 2/1/2016 to match the header 2/1/2016, it gets me the value 21 which is Column V on my sheet. This is correct. I'm after the Column number 21 to use in my VBA further along down the line.

The problem is, I'm getting a Run-time error '1004' [Unable to get the Match Property of the WorksheetFuction class] as shown below. or I get Run-time error '13' Type Mismatch if I insert the *1 in Format(Mid(sh3.Range("A4") * 1, 13, 10), "m/d/yyyy")

Code:
    Dim sh1         As Worksheet
    Dim sh3         As Worksheet
    Dim rowDt       As String
    Dim ColNum      As String

    Set sh1 = Sheets("Sheet1")
    Set sh3 = Sheets("Sheet3")

    rowDt = Format(Mid(sh3.Range("A4"), 13, 10), "m/d/yyyy") 'Sheet 3 has [B]Start Date: 2/1/2016[/B] which the date is extracted.
    ColNum = Application.WorksheetFunction.Match([B]rowDt[/B], sh1.Range("A1:AZ1"), 0) '

To recreate the problem, Sheet1'! has Headers columns A1 thru AZ that are 6/1/2014, 7/1/2014, 8/1/2014 ... 12/1/2016, 1/1/2017 etc. Sheet3'!A4 has: Start Date: 2/1/2016

Sheet1ABC...TUV...
16/1/20147/1/20148/1/2014...1/1/20162/1/20163/1/2016...

<tbody>
</tbody>


Sheet3AB
1
2
3
4Start Date: 2/1/2016

<tbody>
</tbody>


Thanks for any assistance.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
In your formula you are converting the string returned from the MID function to a number by multiplying by 1, in your code you aren't doing that.

So in the code Match is looking for a string not a number.

Try using one of the conversion functions, eg Val, CInt etc, in the code to convert the result from Mid to a number.
 
Upvote 0
Try this...

Code:
    Dim sh1         As Worksheet
    Dim sh3         As Worksheet
    Dim rngDate     As Date
    Dim ColNum      As Variant
    
    Set sh1 = Sheets("Sheet1")
    Set sh3 = Sheets("Sheet3")
    
    rowDt = CDate(Mid(sh3.Range("A4"), 13, 10)) 'Sheet 3 has Start Date: 2/1/2016 which the date is extracted.
    ColNum = Application.Match(rowDt, sh1.Range("A1:AZ1"), 0) '
    If Not IsError(ColNum) Then
        'Match found
    Else
        'No match found
    End If
 
Last edited:
Upvote 0
In your formula you are converting the string returned from the MID function to a number by multiplying by 1, in your code you aren't doing that...

Yes, I mentioned I was getting two types of Error codes.
or I get Run-time error '13' Type Mismatch if I insert the *1 in Format(Mid(sh3.Range("A4") * 1, 13, 10), "m/d/yyyy")

The code doesn't like the *1 so I took it out for the purpose of showing [Unable to get the Match Property of the WorksheetFuction class] error which has been the problem all along.

As for using Val or CInt, I haven't had any luck with your suggestions so far. Thanks though
 
Upvote 0
Try this...

Code:
    rowDt = CDate(Mid(sh3.Range("A4"), 13, 10)) 'Sheet 3 has Start Date: 2/1/2016 which the date is extracted.
    ColNum = Application.Match(rowDt, sh1.Range("A1:AZ1"), 0) '
    If Not IsError(ColNum) Then
        'Match found
    Else
        'No match found
    End If


I tried this and it doesn't work, It still gives me the [Unable to get the Match Property of the WorksheetFuction class] Error 1004.

I have code in place further up that prevents needing
If Not IsError(ColNum) Then. If the code has gotten this far, the Match is guaranteed at this point. The problem is (from what I'm guessing) is MID is making the date into a String but the MATCH requires the exact date found in A1:AZ1.

Question for you that might shed some light. The Header cells for 6/1/2014 thru 12/1/2017 are visually formatted to display as "mmm-yy" so Jun-14, Jul-14, Aug-14, Etc. I don't think that would or should make a difference as the contents of the cell show the actual Date.
 
Upvote 0
What are you actually trying to look for?

If you are trying to match a value against a set of values you should be looking for the value itself, not how it's formatted for display.
 
Upvote 0
Try this.

Code:
    rowDt = [B]CDate[/B](Mid(sh3.Range("A4"), 13, 10)) 'Sheet 3 has Start Date: 2/1/2016 which the date is extracted.
    ColNum = Application.Match([B]CLng[/B](rowDt), sh1.Range("A1:AZ1"), 0) '

The CDate function converts the string from the MID function to a date (rowDT was declared as type Date).
The CLng function converts the date to a long in which the Match function seems to find a serial date match (at least in my test it did).
 
Upvote 0
What are you actually trying to look for?

If you are trying to match a value against a set of values you should be looking for the value itself, not how it's formatted for display.

Ok, I think I got it work correctly now. I was running into two problems, one of which was from an earlier piece of code that I corrected. CInt you mentioned above was my tip off.

Secondly, I used a DateValue instead which did the trick combined with your .Value suggestion. Triple whammy collision.

Here is the corrected code that works

Code:
    Dim sh1         As Worksheet    Dim sh3         As Worksheet
    Dim rowDt       As String
    Dim ColNum      As String


    Set sh1 = Sheets("Sheet1")
    Set sh3 = Sheets("Sheet3")


    rowDt = [B]DateValue[/B](Mid(sh3.Range("A4"), 13, 10))
    ColNum = Application.WorksheetFunction.Match(rowDt, sh1.Range("A1:AZ1")[B].Value[/B], 0) '


Thanks Norie and AlphaFrog! Much appreciated!
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,999
Messages
6,133,953
Members
449,850
Latest member
ali_jellybean

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top