I have a table with some number fields in it, and I'm trying to write a query (an extremely straight-forward one, I thought!) that will add together two of the fields and place the sum in a third (all fields are Long Integer). Here's the query I currently have:
I get no error, but the third field remains blank. What's going on here? I've written much more complicated update queries in the past, so I must be overlooking something because this one is so simple, or something.
Code:
UPDATE [ACE Volumes] SET [ACE Volumes].Approved = [Ace Volumes].APP+[Ace Volumes].NAN;
Comment