latex88 Registered User. Local time Today, 15:22 Joined Jul 10, 2003 Messages 198 Nov 7, 2005 #1 I cannot find a built-in function in Access. Does somesone know how to truncate numbers? For example, 5.568 = 5 4.345 = 4
I cannot find a built-in function in Access. Does somesone know how to truncate numbers? For example, 5.568 = 5 4.345 = 4
R raskew AWF VIP Local time Today, 15:22 Joined Jun 2, 2001 Messages 2,734 Nov 8, 2005 #2 Hi - Lookup the Int() function in your HelpFile. Examples: x = 5.568 y = int(x) ? y 5 x = 4.345 y = int(x) ? y 4 HTH - Bob
Hi - Lookup the Int() function in your HelpFile. Examples: x = 5.568 y = int(x) ? y 5 x = 4.345 y = int(x) ? y 4 HTH - Bob
latex88 Registered User. Local time Today, 15:22 Joined Jul 10, 2003 Messages 198 Nov 8, 2005 #3 well, that was easy. Thanks.
R raskew AWF VIP Local time Today, 15:22 Joined Jun 2, 2001 Messages 2,734 Nov 8, 2005 #4 Glad it helped. Bob