-
- Rate Projections Functions Walkthrough
- Accruals and Cash
- Repeating Formulae
- Range Names and References
- Optional Parameters
- Using PmtsPerYear
- Modelling Seasonality
- Calculating Interest
- Using Business Functions in VBA (Visual Basic for Applications)
- Array Functions
- Volatility
- Annual Equivalent Rates
- Array Function
- Auto Multi Functions
- Variable Plurality
- GoalSeek
- "Calculate Full" recalculates all the workbooks in memory, whether the individual cells need recalculating or not. It is a true "kitchen-sink" recalculate.
- Calculate Full Rebuild" rebuilds Excels dependency tree first, and then does a Full Calculate. If you are in some doubt as to whether Excel has got the order of priority of cell calculations mixed up in some way.
- You don"t have to re-specify the parameters of your GoalSeek every time, or set them up in VBA. The function is your record of the GoalSeek you require.
- If you move the cells referred to by the GoalSeek, the references within the GoalSeek function will kepp track of where they have moved to.
- If you give the model to someone else, you don"t have to give them detailed instructions about running the GoalSeek. Just say "use BF CalculateFull".
- You can have several GoalSeeks in a model, and have them solved in the order you determine, all within a single CalculateFull.
- It uses Excels GoalSeek, so the results will be consistent with if you done the Goalseek "by hand".
- The GoalSeek becomes an intrinsic part of the logic of the model (which it is).
CalculateFull | |
Does 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: |