

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