View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Looping Problem . . .Argh!

shouldn't. You can use if dddd then eeeeee without endif on SAME line or
even with a _ continuation char. Else use

if ddd then
eee
end if


--
Don Guillett
SalesAid Software

"as" wrote in message
...
I found the problem. For some reason If I used the IF/Then on the same

line
without an End if it screwed up. Once I went with the longer form, all

worked.

Thanks for your help.

"Don Guillett" wrote:

The code DOES work and doesn't need to change sheet to do so.

--
Don Guillett
SalesAid Software

"e" wrote in message
...
I tried your code but it still will not move on to the next "For"

command.
It
still tries to apply the changes to the one sheet.

"Don Guillett" wrote:

try this
Sub hideshts()
For Each ws In Worksheets
If ws.Range("a2") = "" Then ws.Visible = False
Next
End Sub

--
Don Guillett
SalesAid Software

"ed" wrote in message
...
I am using the following code to cycle through open sheets and

hide
those
with nothing in Cell A2. When I run the code, it never changes

sheets,
it
just applies the logic to the same sheet.

Dim SH As Worksheet
Dim xlRng As Object 'Excel.Range
Dim xlApp As Excel.Application

For Each SH In xlApp.ActiveWorkbook.Worksheets
Set xlRng = xlApp.Range("A2")
If xlRng = "" Then xlApp.ActiveWindow.SelectedSheets.Visible =

False
Next SH

Any Ideas