contents.gifprev1.gifnext1.gif

BE() - Break-even point

Calculates the point at which cost equals the income.

Returns

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

Arguments

Type
Field
Description
double
dQtySold
Sold quantity
double
dPrice
Sales price per unit
double
dVarCost
Variable cost per unit
double
dFixedCost
Total fixed cost
16 bit DLL declarations

PowerBuilder Function declaration

function double BE(double dQtySold, double dPrice, double dVarCost, double dFixedCost) library "IFL16.DLL"

Visual Basic Function declaration

Declare Function BE lib "IFL16" (ByVal dQtySold As Double, ByVal dPrice As Double, ByVal dVarCost As Double, ByVal dFixedCost As Double) As Double

C/C++ Synopsis

#include "function.h"

double BE(double dQtySold, double dPrice, double dVarCost, double dFixedCost)

32 bit DLL declarations

PowerBuilder Function declaration

function double BE(double dQtySold, double dPrice, double dVarCost, double dFixedCost) library "IFL32.DLL"

Visual Basic Function declaration

Declare Function BE lib "IFL32" (ByVal dQtySold As Double, ByVal dPrice As Double, ByVal dVarCost As Double, ByVal dFixedCost As Double) As Double

C/C++ Synopsis

#include "function.h"

double BE(double dQtySold, double dPrice, double dVarCost, double dFixedCost)

Example:

dQtySold
=
2,000

dPrice
=
13.00

dVarCost
=
6.75

dFixedCost
=
12,000

Result: $ 500.00 (profit)