![]() CalculateFullDoes a full recalculate
| |||
There are two types of CalculateFull in Business Functions:
CalculateFullRebuild can take much longer to calculate than calculateFull - you may want to bear that in mind. CalculateFullRebuild does a full recalculate of your Excel workbook, including rebuilding the dependency tree. It is actually equivalent to the VBA command CalculateFullRebuild. This is very useful because, we have found at least, that Excel sometimes gets into its head not to recalculate certain cells in your workbook that ought to be. CalculateFull or CalculateFullRebuild is the brute force approach to this problem: assume everything needs recalculating and do it. CalculateFull (or CalculateFullrebuild) also solves any embedded GoalSeeks you have in the file. Business Functions' GoalSeek function is an extension to Excels GoalSeek, and in fact it uses Excel's GoalSeek. But instead of having to specify your GoalSeek every time in Excel's GoalSeek dialog box or via VBA, you can 'embed' a GoalSeek in your model using the GoalSeek function. You just pass the appropriate information to the GoalSeek function. Then CalculateFull(Rebuild) will do the GoalSeek as part of its recalculation. The benefits of Business Functions embedded GoalSeek are:
|