|
|
|
|
|
RoundCeil (Function) In french: ArrondiSupérieur
Warning
From version 28, RoundUp is kept for backward compatibility. This function has been replaced with RoundCeil.
Returns: - the numeric value rounded up to the nearest integer.
- the duration rounded up to the nearest interval.
 Not available. - the date and time rounded up to the nearest interval.
 Not available.
ResArrondi = RoundCeil(-16.238167, 2)
ResArrondi = RoundCeil(3.1)
ResArrondi = RoundCeil(3.111, 2)
ResArrondi = RoundCeil(1.9)
ResArrondi = RoundCeil(-1.9)
ResArrondiDurée is Duration
ResArrondiDurée = RoundCeil(13 min, 5 min)
dhMonDateHeure is DateTime = "202211041524"
Trace("dhMonDateHeure: " + dhMonDateHeure)
Trace("ArrondiSupérieur: " + RoundCeil(dhMonDateHeure, 7 min))
Syntax
Rounding a numeric value up Hide the details
<Result> = RoundCeil(<Numeric value> [, <Number of decimals>])
<Result>: Integer or real Value rounded to the greater number. <Numeric value>: Real or currency Numeric value to round. <Number of decimals>: Optional integer Number of decimals to return. If this parameter is not specified, no decimal is returned. Remarks The decimal separator for real numbers is "." (point). Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|