contents.gifprev1.gifnext1.gif

BEFC() - Break-even point fixed cost

Calculates the point where fixed cost equals zero profit.

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

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

Result: $ 12,000.00 (fixed cost)