Functions Reference

Table Of Contents
FILEMAKER FUNCTIONS REFERENCE 176
Examples
Factorial(3) returns 6, which = 3 * 2 * 1.
Factorial(10;3) returns 720, which = 10 * 9 * 8.
Related topics
Contents
Functions reference (alphabetical list)
Floor
Purpose
Returns number rounded down to the next lower integer.
Format
Floor(number)
Parameters
number - any numeric expression or field containing a numeric expression
Data type returned
number
Originated in
FileMaker Pro 7.0
Examples
Floor(1.25) returns 1.
Floor(-1.25) returns -2.
Related topics
Contents
Functions reference (alphabetical list)
Int
Purpose
Drops digits to the right of the decimal point and returns the integer part of number without rounding.
Format
Int(number)