Problem with Match

stemar

Active Member
Joined
Mar 16, 2002
Messages
250
Column A contains a list of dates, starting at row 21. I don't know without looking how many there will be, but it won't be more than a few hundred.

lRow = WorksheetFunction.Match(dDate, .Range("A21:A1000"), 0)

is supposed to give me the row of dDate if it exists in the column or an error if it isn't there, but it's setting lRow to 0

Can anyone tell me what's going on and how to fix it, please? If not it's back to a Do ... Loop, and Match is so much quicker.

Thanks in advance
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
I suspect that Excel stores dates as numbers but the data type of dDate (assuming Hungarian notation) is date. Try wrapping dDate in a CLng:

Code:
lRow = WorksheetFunction.Match(CLng(dDate), .Range("A21:A1000"), 0)

WBD
 
Upvote 0

Forum statistics

Threads
1,225,749
Messages
6,186,802
Members
453,373
Latest member
Ereha

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