G
Guest
On a form there is a combo box. In that there are table names. Once the
user selects the table they want, a BASIC instruction executes on the
AfterUpdate command. Here a query is generated from the corresponding table
selected. This query holds about 3000 records, corresponding to data taken
from sensors.
From that query, a totals query runs selecting the Min, Max and Avg for one
of the fields on the entire table.
I have text boxes that is supposed to update with the new avg/min/max
values. however when the event runs, i get a "#Name?" in the text box. I
used the expression builder to select the proper field from the right query.
my thiniking is that there isn't enough time between the start of the
queries and the selection of the data. is there a way to pause the VB code
to allow the queries to run, therefore setting the proper data in the
recordset?
user selects the table they want, a BASIC instruction executes on the
AfterUpdate command. Here a query is generated from the corresponding table
selected. This query holds about 3000 records, corresponding to data taken
from sensors.
From that query, a totals query runs selecting the Min, Max and Avg for one
of the fields on the entire table.
I have text boxes that is supposed to update with the new avg/min/max
values. however when the event runs, i get a "#Name?" in the text box. I
used the expression builder to select the proper field from the right query.
my thiniking is that there isn't enough time between the start of the
queries and the selection of the data. is there a way to pause the VB code
to allow the queries to run, therefore setting the proper data in the
recordset?