Access Fix Function

Last updated: August 26, 2026.

The Fix function removes the fractional part of a number by truncating toward zero.

Syntax

Fix(number)
ArgumentDescription
numberNumeric expression

Examples

Fix(8.9)       ' 8
Fix(-8.9)      ' -8
Int(-8.9)      ' -9

Fix and Int differ for negative numbers: Fix truncates toward zero, while Int rounds downward.

See Microsoft’s Access function reference for related expression functions.

admin

admin

Leave a Reply

Your email address will not be published.