FDIV


The FDIV function performs floating point division on two numeric values.

 

COMMAND SYNTAX

FDIV(expression1, expression2)

 

SYNTAX ELEMENTS

Both expression1 and expression 2 must evaluate to non-null numeric values.

 

NOTES

If either of the arguments evaluates to null then a run time "non-numeric" error will occur.

If the second argument evaluates to zero then a run time "divide by zero" error will occur.

The calculation is not subject to the PRECISION setting.

 

EXAMPLES

CRT FDIV(1,7)

displays 0.1428571429


jBC