ID : 236
Min
Function
To return a minimum value.
Syntax
Min(formula, formula[, formula])
Guaranteed entry
- Formula
- Lay formulas you want to compare values in separated by a comma (,). Designate double precision real number type data. Up to 32 arguments can be designated.
Return value
Return the smallest value among the designated formulas by double precision real number type data.
Description
The smallest value among the specified number of formulas is returned by double precision real number type data.
The maximum number of formulas that can be specified is 32.
Related Terms
Attention
-
Example
'!TITLE "Extraction of Minimum Value"
' Assign the minimum value to aaa
Sub Sample_Min
Dim aaa As Integer
Dim bbb As Integer
Dim ccc As Integer
Dim ddd As Integer
Dim eee As Integer
bbb = 4
ccc = 2
ddd = 10
eee = 8
' Assign the minimum value between bbb and eee to aaa
aaa = Min( bbb, ccc, ddd, eee )
' Display "2" on the message output window
PrintDbg aaa
End Sub
ID : 236