User Guide Cancel

Fix

 

Description

Converts a real number to an integer.

Returns

If  number  is greater than or equal to 0, the closest integer less than or equal to  number . If  number  is less than 0, the closest integer greater than or equal to  number .

Category

Mathematical functions

Function syntax

Fix(number)

See also

Ceiling, FloorIntRound

Parameters

Parameter

Description

number

A number

 

Example 1

<cfscript>
number = 0.5 ;
writeOutput(fix(number)) ; // Results 0
</cfscript>
<cfscript> number = 0.5 ; writeOutput(fix(number)) ; // Results 0 </cfscript>
<cfscript>
  number = 0.5 ;
  writeOutput(fix(number)) ; // Results 0
</cfscript>

Example 2

Try in CFFiddle

<h3>Fix Example</h3>
<p>Fix returns the closest integer less than the number if the number is
greater than or equal to 0. Fix returns the closest integer greater than
the number if number is less than 0.</p>
<cfoutput>
<p>The fix of 3.4 is #Fix(3.4)#</p>
<p>The fix of 3 is #Fix(3)#</p>
<p>The fix of 3.8 is #Fix(3.8)#</p>
<p>The fix of -4.2 is #Fix(-4.2)#</p>
</cfoutput>
<h3>Fix Example</h3> <p>Fix returns the closest integer less than the number if the number is greater than or equal to 0. Fix returns the closest integer greater than the number if number is less than 0.</p> <cfoutput> <p>The fix of 3.4 is #Fix(3.4)#</p> <p>The fix of 3 is #Fix(3)#</p> <p>The fix of 3.8 is #Fix(3.8)#</p> <p>The fix of -4.2 is #Fix(-4.2)#</p> </cfoutput>
<h3>Fix Example</h3>
<p>Fix returns the closest integer less than the number if the number is
greater than or equal to 0. Fix returns the closest integer greater than
the number if number is less than 0.</p>
<cfoutput>
<p>The fix of 3.4 is #Fix(3.4)#</p>
<p>The fix of 3 is #Fix(3)#</p>
<p>The fix of 3.8 is #Fix(3.8)#</p>
<p>The fix of -4.2 is #Fix(-4.2)#</p>
</cfoutput>

Get help faster and easier

New user?