Find first blank in all sheets

Robert E Lee

Active Member
Joined
Aug 10, 2005
Messages
266
Hi All

I am attempting to loop through each sheet in a workbook, find the first blank after "A2" and therefrom create a range.
The problem seems to be that whatever sheet the macro is assessing it always finds the value for the first blank on Sheet1


Code:
For Each rs In Wb.Sheets
            
                                If rs.Name <> "sheet1" Then
                             
                                i = Cells.Find(what:="", After:=ActiveCell, searchorder:=xlByColumns, SearchDirection:=xlNext, _
                                MatchCase:=False, SearchFormat:=False).Row

I suspect that i need to change "After:=ActiveCell" to "After:rs.Range("A2")" ( which does not compile.).

Any guidance much appreciated

Rob
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
I suspect that i need to change "After:=ActiveCell" to "After:rs.Range("A2")" ( which does not compile.).

Hi, more likely that you need to qualify cells in this part..

i = rs.Cells.Find(what:="", After....etc
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,265
Members
452,627
Latest member
KitkatToby

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