mraetrudeaujr
Technical User
I tried to create an Update Query to pull the data into a new field and the data didn't show up there. What happened was that I decided to replace the simple 'check boxes' with an 'option group' to avoid errors in selecting more than one check box. I already have 700 records in the database now, and I need have these three 'fields' consolidated under one field (option group). I was told that an update query could be used to replace the yes/no check box values with their respective option group values; 1, 2, or 3.
When I first tried out this Update Query a confirmation box said that it was going to populate 207 records into the new field. When I revisted the table, these records weren't in the newly created field. The good news is that I didn't lose the original information.
My plan was to experiment with just one of the populated fields and if I got the results that I wanted/needed, then I would create separate Update Queries for the other two fields. However, now the results are coming back as zero "0" for records being able to be updated. This would tell me that the update query worked, but like I stated above, this new field was not updated!
Here are the fields: Voluntary Return, WA/NTA, and TOT. These are the original 'check box' fields (yes/no). The new field is labeled DISPOSITION. This is the 'Option Group'. Here is the SQL that returned the empty results in the table:
If I can straighten this out, I can duplicate it for the remaining fields and then delete them. I realize that this will also affect my queries and reports, but that's okay. Any help will be greatly appreciated.
When I first tried out this Update Query a confirmation box said that it was going to populate 207 records into the new field. When I revisted the table, these records weren't in the newly created field. The good news is that I didn't lose the original information.
My plan was to experiment with just one of the populated fields and if I got the results that I wanted/needed, then I would create separate Update Queries for the other two fields. However, now the results are coming back as zero "0" for records being able to be updated. This would tell me that the update query worked, but like I stated above, this new field was not updated!
Here are the fields: Voluntary Return, WA/NTA, and TOT. These are the original 'check box' fields (yes/no). The new field is labeled DISPOSITION. This is the 'Option Group'. Here is the SQL that returned the empty results in the table:
Code:
UPDATE tbl_reinstatement SET tbl_reinstatement.VOLUNTARY_RETURN = "DISPOSITION"
WHERE ((([tbl_reinstatement].[VOLUNTARY_RETURN])=True));
If I can straighten this out, I can duplicate it for the remaining fields and then delete them. I realize that this will also affect my queries and reports, but that's okay. Any help will be greatly appreciated.