Trail: PROIV Documentation > Developer > PROIV Developer > Developing Functions > Events and Logic > MIN

 

 

Purpose

MIN (Minimum) finds the lowest value in a series of operands. 
 

Syntax

variable = MIN(operand1,operand2, . . . operandn)
 

Operation

operand1 . . . operandn are valid numeric constants, variables, or expressions, separated by commas.
 

Example

Assume

#A = 7,  

#B = 6.9,

and

#C = -8.25.

#D = MIN (#A, #B, #C) sets #D to –8.25
 

Comment on this topic

Topic ID: 520091