![]() |
Recalculate in VBA
How do I force a recalculation in VBA ? Thanks.
|
Recalculate in VBA
Use Calculate method
To calculate All open workbooks - Application.Calculate (or just Calculate) A specific worksheet - Worksheets(1).Calculate A specified range - Worksheets(1).Rows(2).Calculate or Worksheets("Sheet1").UsedRange.Columns("A:C").Calc ulate "dhstein" wrote: How do I force a recalculation in VBA ? Thanks. |
Recalculate in VBA
Sub stein001()
Application.Calculate End Sub -- Gary''s Student - gsnu200854 |
Recalculate in VBA
Thanks Gary and Sheeloo "Sheeloo" wrote: Use Calculate method To calculate All open workbooks - Application.Calculate (or just Calculate) A specific worksheet - Worksheets(1).Calculate A specified range - Worksheets(1).Rows(2).Calculate or Worksheets("Sheet1").UsedRange.Columns("A:C").Calc ulate "dhstein" wrote: How do I force a recalculation in VBA ? Thanks. |
All times are GMT +1. The time now is 07:01 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com