

BEPR() - Break-even point unit price
| Type
| Field
| Description
|
| double
| dQtySold
| Sold quantity
|
| double
| dVarCost
| Variable cost per unit
|
| double
| dFixedCost
| Total fixed cost
|
PowerBuilder Function declaration
function double BEPR(double dQtySold, double dVarCost, double dFixedCost) library "IFL16.DLL"
Visual Basic Function declaration
Declare Function BEPR lib "IFL16" (ByVal dQtySold As Double, ByVal dVarCost As Double, ByVal dFixedCost As Double) As Double
C/C++ Synopsis
#include "function.h"
double BEPR(double dQtySold, double dVarCost, double dFixedCost)
32 bit DLL declarations
PowerBuilder Function declaration
function double BEPR(double dQtySold, double dVarCost, double dFixedCost) library "IFL32.DLL"
Visual Basic Function declaration
Declare Function BEPR lib "IFL32" (ByVal dQtySold As Double, ByVal dVarCost As Double, ByVal dFixedCost As Double) As Double
C/C++ Synopsis
#include "function.h"
double BEPR(double dQtySold, double dVarCost, double dFixedCost)
Example:
| dQtySold
| =
| 1,920
|
|
| dVarCost
| =
| 6.75
|
|
| dFixedCost
| =
| 12,000
|
|