contents.gifprev1.gifnext1.gif

CLEV() - Combined leverage

Calculates the combined leverage, which measures the percentage change in net after tax earnings due to a one percent change in sales.

Returns

Double value if successful. If an error occurs, this function returns a zero.

Arguments

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
16 bit DLL declarations

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

Result: 1.88 (1.88%)