R
Rich
I have created a select query that is activated by a
button on the switchboard using DoCmd.OpenQuery ...
The resulting datasheet has values in it that I want to
use to perform calculations. Using VB, I want to take
these values line by line, perform logic based on the
data, and then export the values to a separate table with
different field names.
I.E.
TEST-Query returns the following:
ID_NUMBER | NAME | STATUS
123456 | Smith | A
234567 | Jones | B
Then, using VB Code, I pull the first record (ID_NUMBER
123456/Smith/A). The logic returns the value "True" which
I then want to send to a table (TEST-Table) and store in
(TEST-Field).
My questions are,
Can I do this?
If Yes, how?
Thanks if you can help.
button on the switchboard using DoCmd.OpenQuery ...
The resulting datasheet has values in it that I want to
use to perform calculations. Using VB, I want to take
these values line by line, perform logic based on the
data, and then export the values to a separate table with
different field names.
I.E.
TEST-Query returns the following:
ID_NUMBER | NAME | STATUS
123456 | Smith | A
234567 | Jones | B
Then, using VB Code, I pull the first record (ID_NUMBER
123456/Smith/A). The logic returns the value "True" which
I then want to send to a table (TEST-Table) and store in
(TEST-Field).
My questions are,
Can I do this?
If Yes, how?
Thanks if you can help.