|
UpdateOtherExpenses |
Top Previous Next |
|
Adjusts the Other Expenses category by the specified amount. This can be used to account for fees or taxes. This amount can be accessed using test.otherExpenses property and will print on the Summary Report as "Other Expenses"
This function immediately moves the indicated equity from closed equity to Other Expenses.
Syntax
UpdateOtherExpenses( expenseAdjustment )
Parameters
Example ' Moves one percent of the total equity from closed equity to other expenses. This amount is no longer available equity to the test. otherExpenseAdjustment = test.totalEquity * .01 test.UpdateOtherExpenses( otherExpenseAdjustment )
' Adds $100,000 to the test closed equity. Subtracts from the other expenses. test.UpdateOtherExpenses( -100000 ) |