View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
susan susan is offline
external usenet poster
 
Posts: 2
Default Open and hide a document by toggling

Marvellous, it works. Thanks Barb.

"Barb Reinhardt" wrote in message
...
Try something like this:

If Not Windows("Book1").Visible Then
Windows("Book1").Visible = True
Else
Windows("Book1").Visible = False
End If

HTH,
Barb Reinhardt

"susan" wrote:

I use an Index file all the time. It is loaded but hidden whenever Excel
is
on. When I click a button it comes on but I have to physically hide it
when
it is not wanted. How can the codes be changed so that the same button
caries out both the tasks by toggling?
Thank you if you can help.

Susan