Error with last table row (Run Time Error 91)

JumboCactuar

Well-known Member
Joined
Nov 16, 2016
Messages
785
Office Version
  1. 365
Platform
  1. Windows
Hi,
i have this code for finding last used row in a table:

Code:
Sub LastTableRow()


lrow = Range("Table5").Columns(1).Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row


Debug.Print "lrow :" & lrow


End Sub

This works great except for when the table has no data it outputs this error:

cc58ff7c7c.png


Anyone know why?
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
The asterisk (*) is looking for the last row that contains data. If there is no data, an error is generated.
 
Upvote 0
Assuming that there is no data in the sheet, this would do it.
Code:
Sub Test()
    Dim lrow As Long
    If Range("A1") = "" Then lrow = 2
End Sub
 
Upvote 0
The asterisk (*) is looking for the last row that contains data. If there is no data, an error is generated.

Assuming that there is no data in the sheet, this would do it.
Code:
Sub Test()
    Dim lrow As Long
    If Range("A1") = "" Then lrow = 2
End Sub

Didn't think of doing this, thankyou works perfect
 
Upvote 0

Forum statistics

Threads
1,215,518
Messages
6,125,291
Members
449,218
Latest member
Excel Master

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