Error 462 When Re-running Report

CPGDeveloper

Board Regular
Joined
Oct 8, 2008
Messages
174
Hi All --

Apologies if that has been covered somewhere -- but I cannot seem to find it while searching.

I have an Access Based Reporting Application, where a user can select a specific report in a drop down, and then it runs that report and exports it to excel. Two of the reports in particular will not allow the user to run them twice in a row. It works fine the first time, but the 2nd time I get VBA Error 462.

It's happening specifically on this line of code:

lr = oSheet.Cells(Rows.Count, 1).End(xlUp).Row

'oSheet' being an Excel Worksheet. This is to determine the last row of the report in order to do some formatting. Perhaps there's another way to write this that would avoid the error?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
You forgot to qualify the Rows property:

Code:
lr = oSheet.Cells(osheet.Rows.Count, 1).End(xlUp).Row
 
Upvote 0

Forum statistics

Threads
1,214,854
Messages
6,121,941
Members
449,056
Latest member
denissimo

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