Code showing sheet 1 and 2 when executed problem

bamaisgreat

Well-known Member
Joined
Jan 23, 2012
Messages
821
Office Version
  1. 365
Platform
  1. Windows
Thanks for looking at my post.

I have had issues with this for sometime and I really cant pinpoint when exactly it happens. I do know that it sometimes happens when running the code below. When switching form sht to sht as shown below it will show a partial view of the other sheet. You can simply scroll most of the time and it will go away. Does anyone else know what Im talking about or have a possible solution.

One more thing. I can open the workbook on other computers and it may or may not do this.


Code:
Sub switch_to_job()


    Sheets("Job Cutting Form").Visible = True
    Sheets("Job Cutting Form").Select
    Sheets("STOCK CUTTING FORM").Visible = False
    ActiveWorkbook.Save


End Sub
Sub switch_stock_Form()


    Sheets("STOCK CUTTING FORM").Visible = True
    Sheets("STOCK CUTTING FORM").Select
    Sheets("Job Cutting Form").Visible = False
    ActiveWorkbook.Save


End Sub
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
put the following line at the beginning of each macro

Application.screenupdating = false
 
Upvote 0
Code:
Sub switch_to_job()


Application.screenupdating = false


    Sheets("Job Cutting Form").Visible = True
    Sheets("Job Cutting Form").Select
    Sheets("STOCK CUTTING FORM").Visible = False
    ActiveWorkbook.Save




End Sub


Sub switch_stock_Form()


Application.screenupdating = false


    Sheets("STOCK CUTTING FORM").Visible = True
    Sheets("STOCK CUTTING FORM").Select
    Sheets("Job Cutting Form").Visible = False
    ActiveWorkbook.Save




End Sub
 
Upvote 0

Forum statistics

Threads
1,214,976
Messages
6,122,543
Members
449,089
Latest member
davidcom

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