Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm hoping someone can help me out. I am using Excel 2003 and we have a
workbook with several worksheets on it. The first worksheet "Data_Import" is a hidden worksheet that we populate data on from an external tool. Our second sheet "Summary" has linked cells to all of the appropriate fields on "Data_Import". We run our external tool and it populates the Data_Import sheet as expected but when it's opened, nothing is refreshed on our screen. We have to either F2 on of of the cells and hit enter or we have to do a save as for the sheet to refresh. I've tried eveything and nothing seems to work. I have a macro running on the open event so that it hides the Data_Import sheet as well as another sheet and I even tried adding a find/replace function in there to run with = to trigger the refresh and nothing. These are only linked cells, no forumals. I have auto calculation on and module1 in VBA is set to UpdateLinksAutomatic and still no luck. Your help is much appreciated, I've been researching for 2 days with no luck. Thanks, Steph |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
My guess would be that the Import routine is turing off screen updating
and/or automatic calculation and not turning them back on in VBA the line Application.ScreenUpdating = True will turn screen updating back on and Application.Calculation = xlCalculationAutomatic will reset the calculation to Auto Try running these as a seperate macro and if it solves the problem put them at the end of the import routine. -- If this helps, please remember to click yes. "Steph C" wrote: I'm hoping someone can help me out. I am using Excel 2003 and we have a workbook with several worksheets on it. The first worksheet "Data_Import" is a hidden worksheet that we populate data on from an external tool. Our second sheet "Summary" has linked cells to all of the appropriate fields on "Data_Import". We run our external tool and it populates the Data_Import sheet as expected but when it's opened, nothing is refreshed on our screen. We have to either F2 on of of the cells and hit enter or we have to do a save as for the sheet to refresh. I've tried eveything and nothing seems to work. I have a macro running on the open event so that it hides the Data_Import sheet as well as another sheet and I even tried adding a find/replace function in there to run with = to trigger the refresh and nothing. These are only linked cells, no forumals. I have auto calculation on and module1 in VBA is set to UpdateLinksAutomatic and still no luck. Your help is much appreciated, I've been researching for 2 days with no luck. Thanks, Steph |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This worked, I added the Application.Calculation = xlCalculationAutomatic and
it's working now as expected. Thank you so much for your assistance! "Paul C" wrote: My guess would be that the Import routine is turing off screen updating and/or automatic calculation and not turning them back on in VBA the line Application.ScreenUpdating = True will turn screen updating back on and Application.Calculation = xlCalculationAutomatic will reset the calculation to Auto Try running these as a seperate macro and if it solves the problem put them at the end of the import routine. -- If this helps, please remember to click yes. "Steph C" wrote: I'm hoping someone can help me out. I am using Excel 2003 and we have a workbook with several worksheets on it. The first worksheet "Data_Import" is a hidden worksheet that we populate data on from an external tool. Our second sheet "Summary" has linked cells to all of the appropriate fields on "Data_Import". We run our external tool and it populates the Data_Import sheet as expected but when it's opened, nothing is refreshed on our screen. We have to either F2 on of of the cells and hit enter or we have to do a save as for the sheet to refresh. I've tried eveything and nothing seems to work. I have a macro running on the open event so that it hides the Data_Import sheet as well as another sheet and I even tried adding a find/replace function in there to run with = to trigger the refresh and nothing. These are only linked cells, no forumals. I have auto calculation on and module1 in VBA is set to UpdateLinksAutomatic and still no luck. Your help is much appreciated, I've been researching for 2 days with no luck. Thanks, Steph |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
saving and refreshing workbook linked to a SQL database | Excel Discussion (Misc queries) | |||
Refreshing a linked Access Database | Excel Discussion (Misc queries) | |||
Refreshing Excel worksheet with data linked from Access | Excel Discussion (Misc queries) | |||
refreshing linked workbooks | Excel Worksheet Functions | |||
Refreshing Pivot Tables linked to Oracle Datasource | Excel Discussion (Misc queries) |