Run Time Error 424

katlong

New Member
Joined
Sep 6, 2018
Messages
9
I'm trying to find the bottom row of a file using the following code;
LFile = Cells(2, 6).Value
k = LFile.Worksheet(1).Cells(Rows.Count, 1).End(xlUp).Row

The code has no issues picking up the LFile as a variable path to a file on a drive at work, but fails at assigning that value to the workbook in order to get the bottom row of data. How can I get VBA to recognize the the workbook at the end of the path as the LFile workbook to find the last row?
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Code:
k = Workbooks(LFile).Worksheet(1).Cells(Rows.Count, 1).End(xlUp).Row
 
Upvote 0
I'm trying to find the bottom row of a file using the following code;
LFile = Cells(2, 6).Value
k = LFile.Worksheet(1).Cells(Rows.Count, 1).End(xlUp).Row

The code has no issues picking up the LFile as a variable path to a file on a drive at work, but fails at assigning that value to the workbook in order to get the bottom row of data. How can I get VBA to recognize the the workbook at the end of the path as the LFile workbook to find the last row?

Thanks for the correction, Workbooks(LFile).Worksheet(1).Cells(Rows.count,1).End(xlup).Row, however that now produces a subscript out of range error. How can that be since every workbook by definition must have Worksheet(1)?
 
Upvote 0
Is that workbook open?
 
Upvote 0

Forum statistics

Threads
1,216,085
Messages
6,128,733
Members
449,465
Latest member
TAKLAM

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