jaaret
Instructor
- Jun 19, 2002
- 171
I'm getting some strange update query results when parsing a field in Access 2002. I'm parsing a property tax ID so it can successfully join with the tax ID field in a linked table. For example, an original value in the Kparcel text field is: K0324059002
The code I'm using in the query is:
Parcel: Left(Right([kparcel],10),6) & " " & Right([kparcel],4)
On *most* tax id's it returns the correct result:
032405 9002
But on others it returns 59002 (and six spaces afterwards).
I can't see any pattern to why some results are correct and others are not. The format of the original value is identical for all records. The incorrect results show up in both select and update queries.
Help!
The code I'm using in the query is:
Parcel: Left(Right([kparcel],10),6) & " " & Right([kparcel],4)
On *most* tax id's it returns the correct result:
032405 9002
But on others it returns 59002 (and six spaces afterwards).
I can't see any pattern to why some results are correct and others are not. The format of the original value is identical for all records. The incorrect results show up in both select and update queries.
Help!