ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Move to first blank sheet (https://www.excelbanter.com/excel-programming/345760-move-first-blank-sheet.html)

[email protected]

Move to first blank sheet
 
Hello,

I have an application with many hidden sheets. A macro will unhide
sheets based on a criteria. The user then responds to questions and a
score is calculated. No problem so far.

However, if the user backs out of these sheets and re-enters via the
macro, I need for them to be taken to the sheets that haven't yet been
entered/altered.

I need this to work in Excel 95 and up and I understand there are
compatibility problems with OnEntry, OnData in 95 and On
Wookbook_Change in 97 etc.

Any thoughts?

Thanks very much in advance.

Dave


Don Guillett[_4_]

Move to first blank sheet
 
Something like this should work in all versions.

Sub gotoblanksheet()
For Each sh In Worksheets
If Len(sh.Range("a1")) < 1 Then
sh.Select
Exit Sub
End If
Next
End Sub

--
Don Guillett
SalesAid Software

wrote in message
ups.com...
Hello,

I have an application with many hidden sheets. A macro will unhide
sheets based on a criteria. The user then responds to questions and a
score is calculated. No problem so far.

However, if the user backs out of these sheets and re-enters via the
macro, I need for them to be taken to the sheets that haven't yet been
entered/altered.

I need this to work in Excel 95 and up and I understand there are
compatibility problems with OnEntry, OnData in 95 and On
Wookbook_Change in 97 etc.

Any thoughts?

Thanks very much in advance.

Dave





All times are GMT +1. The time now is 11:07 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com