Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| a_f:f:af:floor [2022/09/02 02:51] – removed - external edit (Unknown date) 127.0.0.1 | a_f:f:af:floor [2023/05/09 00:55] (current) – sean | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | {{tag> | ||
| + | ====== FLOOR ====== | ||
| + | ===== Description ===== | ||
| + | Returns the largest integer number that is not greater than the provided number: | ||
| + | * FLOOR (5.67) = 5; | ||
| + | * FLOOR (-5.57) = -6 | ||
| + | ===== Parameters ===== | ||
| + | Attribute of the Number type or number constant or calculation producing number | ||
| + | ===== Example ===== | ||
| + | <code aim>IF FLOOR (Transaction.Amount) = 10 THEN ... </ | ||