Pivot Table Issues

Pestomania

Active Member
Joined
May 30, 2018
Messages
292
Office Version
  1. 365
Platform
  1. Windows
Hi everyone,

I have a workbook that a macro opens, saves, and information is pulled from that excel. Problem is: the Workbook will not update while macro is running. The worksheet opens, everything is 0 and then it saves as everything 0. When I leave it open after macro finishes, it will update to the correct data. What do I do????
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Its always good to provide the code but sounds like you have calculation off. You could put an

Code:
Application.CalculateFull

in the code at the appropriate moment
 
Upvote 0
So all of my calculations are set to off. I still tried the Application.CalculateFull, still nothing. Below is the code that I'm trying .

Code:
Sub SaveDocuments ()

Dim LocalFolder as String

Workbooks.Open Filename:= CutGoals
Workbooks("Cut Goals"). Activate
ActiveWindow.Visible = True
Application.CalculateFull
Sheets("CutGoals by WO").select

Wb = Left(ActiveWorkbook.Name, (InstrRev(Active workbook.name, ".", -1, vbtextcompart)-1))
Path = LocalFolder
Active workbook.CheckCompatibility = False
ActiveWorkbook.Saveas Filename:=Path & "\" & wb, FileFormat:= 51

ActiceWorkbook.Close

End Sub

Thank you!
 
Upvote 0

Forum statistics

Threads
1,215,177
Messages
6,123,475
Members
449,100
Latest member
sktz

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