How to add your knowledge

min()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1
    4. 4. Example 2
    5. 5. Example 3

    Synopsis

    Returns the smallest number amongst n and nums. Always returns a number.

    Syntax

    min ( n As Number, _
           ... nums As Number ) As Number 
    Argument Type Description
    n Number The first number, at least one argument is required.
    nums Number Repeated; remaining set of numbers, as many as desired.

    Example 1

    Single input

    Intent >min(3) 
    --> 3.0 

    Example 2

    Two inputs

    Intent >min(3, 5) 
    --> 3.0 

    Example 3

    Multiple inputs

    Intent >min(3, 5, 2, 6.2) 
    --> 2.0