\
Using the Integer Division (\) Operator
In this tutorial you will learn how to use the \ Operator.
The \ operator is used to divide two numbers and return an integer.
= (number) \ (number)
number any valid number expression
In this example we will use 10.5 and 5.2.
The result is 2.
Query
The results using a Query would be
SELECT 10.5\5.2;
FORM
In a Form you could set the Default Value of a Textbox to
= 10.5 \ 5.2
VBA
In a Form add a TEXTBOX control and rename it "txtIntegerDivision", then you could add the following in the Load Event.
Private Sub Form_Load()
txtIntegerDivision = 10.5 \ 5.2
End Sub
Courses
Access Expert 8
|
Access Expert 12
|
Access Expert 26
Seminars
SQL 2
|
Web Sync
Search
You can find more about this by searching the website.
By: Alex Hedley
Click here to sign up for more FREE tips
|