ACC2000: Behavior of Query Differs for Byte DataID: Q199270
|
When you create an update query that calculates values for a Numeric field whose FieldSize property is set to Byte, you may not get the results that you expect when the calculated value in the field is larger than what the Byte size data type can hold. If this happens, the query updates the value in the field to the calculated value minus 256.
The Byte data type is used to store small, positive integers ranging from 0 to 255.
Use a different field size for your calculated field if you are going to be creating calculations that exceed 255.
Table: Table1
------------------
Field name: Field1
Data Type: Number
Field size: Byte
10, 15, 20
Query | Returned Values |
---|---|
One | 20, 30, 40 |
Two | 40, 60, 80 |
Three | 80, 120, 160 |
Four | 160, 240, 64 |
For more information about field sizes, click Microsoft Access Help on the
Help menu, type "fields, size" in the Office Assistant or the Answer Wizard,
and then click Search to view the topics returned.
Additional query words: prb
Keywords : kbusage kbdta QryUpdat QryProp
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: May 13, 1999