VBA: Fastest way to determine last non blank row in column

jamescooper

Well-known Member
Joined
Sep 8, 2014
Messages
834
This is pretty fast, is there any quicker?

Thanks.

Code:
LR = [match(2,1/(l21:l<>""))]
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
I never checked for speed, but I have always used this:
Code:
LR = Cells(Rows.Count, "L").End(xlUp).Row

You can run your own speed experiments if you like.
I would expect my code is probably at least as fast as your code, though I expect any differences may be pretty much negligible and might not make much difference to the overall performance of your code.
 
Last edited:
Upvote 0
Thanks, doesn't appear too much difference in the speed between the 3.
Note that my code and Alan's are doing the same thing. The only difference is I am using Cells(row,column) to refer to the range and he is using Range(...)​, but that really shouldn't make any difference.
 
Upvote 0
....and Joe types faster than me.
That's a first!;)
(My typing skills are severely lacking!)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,484
Members
448,967
Latest member
visheshkotha

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