Modulo in SQL expression

chacal

Registered User.
Local time
Today, 00:07
Joined
Jun 1, 2005
Messages
40
Hi everyone,

I wanted to know if there is a way to compute the modulo in an sql expression created in VBA?

Thank you in advance for your responses. :)
 
Devise a function using the following, then use the function

From the VBA help screen:

Mod Operator


Used to divide two numbers and return only the remainder.

Syntax

result = number1 Mod number2

The Mod operator syntax has these parts:

Part Description
result Required; any numeric variable.
number1 Required; any numeric expression.
number2 Required; any numeric expression.



Remarks

The modulus, or remainder, operator divides number1 by number2 (rounding floating-point numbers to integers) and returns only the remainder as result. For example, in the following expression, A (result) equals 5.

A = 19 Mod 6.7

Usually, the data type of result is a Byte, Byte variant, Integer, Integer variant, Long, or Variant containing a Long, regardless of whether or not result is a whole number. Any fractional portion is truncated. However, if any expression is Null, result is Null. Any expression that is Empty is treated as 0.
 

Users who are viewing this thread

Back
Top Bottom