FMUL


The FMUL function performs floating point multiplication of two numeric values.

 

COMMAND SYNTAX

FMUL(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.

The calculation is not subject to the PRECISION setting.

 

EXAMPLES

CRT FMUL(4.0017,-1.83)

displays -7.323111


jBC