ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   New Users to Excel (https://www.excelbanter.com/new-users-excel/)
-   -   Macros Wont Run After Hiding Sheet (https://www.excelbanter.com/new-users-excel/229912-macros-wont-run-after-hiding-sheet.html)

John Calder

Macros Wont Run After Hiding Sheet
 
Hi

I run Excel 2K

I have a table on a wroksheet called SUPPORT SHEET.

I use the sheet for various purposes. eg, validation tables, lookup tables etc

On a different sheet I have a macro that copies data from the SUPPORT SHEET.
The macro works fine until I hide the SUPPORT SHEET, then the macro does not
work.

Is there a way I can hide the SUPPORT SHEET but the macro I use still work?


Thanks

John

AltaEgo

Macros Wont Run After Hiding Sheet
 
Two options:

Sub test()

Application.ScreenUpdating = False
Worksheets("SUPPORT SHEET").Visible = True

'yourcode

Worksheets("SUPPORT SHEET").Visible = False
Application.ScreenUpdating = True
End Sub

OR, my preferred method is to change code so it refers to or updates the
sheet without activating or selecting the sheet or its content.

If you need more specific advice on the latter post further question/s.

--
Steve

"John Calder" wrote in message
...
Hi

I run Excel 2K

I have a table on a wroksheet called SUPPORT SHEET.

I use the sheet for various purposes. eg, validation tables, lookup tables
etc

On a different sheet I have a macro that copies data from the SUPPORT
SHEET.
The macro works fine until I hide the SUPPORT SHEET, then the macro does
not
work.

Is there a way I can hide the SUPPORT SHEET but the macro I use still
work?


Thanks

John



John Calder

Macros Wont Run After Hiding Sheet
 
Steve

What you have given me will do. It works great...so well done !

and many thanks

John


"AltaEgo" wrote:

Two options:

Sub test()

Application.ScreenUpdating = False
Worksheets("SUPPORT SHEET").Visible = True

'yourcode

Worksheets("SUPPORT SHEET").Visible = False
Application.ScreenUpdating = True
End Sub

OR, my preferred method is to change code so it refers to or updates the
sheet without activating or selecting the sheet or its content.

If you need more specific advice on the latter post further question/s.

--
Steve

"John Calder" wrote in message
...
Hi

I run Excel 2K

I have a table on a wroksheet called SUPPORT SHEET.

I use the sheet for various purposes. eg, validation tables, lookup tables
etc

On a different sheet I have a macro that copies data from the SUPPORT
SHEET.
The macro works fine until I hide the SUPPORT SHEET, then the macro does
not
work.

Is there a way I can hide the SUPPORT SHEET but the macro I use still
work?


Thanks

John





All times are GMT +1. The time now is 02:53 AM.

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