

CLEV() - Combined leverage
| Type
| Field
| Description
|
| double
| dInt
| Interest expense
|
| double
| dUnits
| Units sold
|
| double
| dPrice
| Price per unit
|
| double
| dVarCost
| Variable cost per unit
|
| double
| dFixedCost
| Fixed cost per unit
|
PowerBuilder Function declaration
function double CLEV(double dInt, double dUnits, double dPrice, double dVarCost, double dFixedCost) library "IFL16.DLL"
Visual Basic Function declaration
Declare Function CLEV lib "IFL16" (ByVal dInt As Double, ByVal dUnits As Double, ByVal dPrice As Double, ByVal dVarCost As Double, ByVal dFixedCost As Double) As Double
C/C++ Synopsis
#include "function.h"
double CLEV(double dInt, double dUnits, double dPrice, double dVarCost, double dFixedCost)
32 bit DLL declarations
PowerBuilder Function declaration
function double CLEV(double dInt, double dUnits, double dPrice, double dVarCost, double dFixedCost) library "IFL32.DLL"
Visual Basic Function declaration
Declare Function CLEV lib "IFL32" (ByVal dInt As Double, ByVal dUnits As Double, ByVal dPrice As Double, ByVal dVarCost As Double, ByVal dFixedCost As Double) As Double
C/C++ Synopsis
#include "function.h"
double CLEV(double dInt, double dUnits, double dPrice, double dVarCost, double dFixedCost)
Example:
| dInt
| =
| 20,000
|
|
| dUnits
| =
| 10,000
|
|
| dPrice
| =
| 20.00
|
|
| dVarCost
| =
| 5.00
|
|
| dFixedCost
| =
| 50,000
|
|