

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