D
dwaynesworld013
I am having the most difficult time calculating values obtained from a combo
box. The field that I am trying to calculate is based on a column in a combo
box selection. I can update/calculate the information on a form or report
but the values that are calculated will not store in the underlying table.
Here is an example:
The combo box uses the following Row Source:
SELECT tblCourseData.[Course ID], tblCourseData.[Course Listing],
tblCourseData.[Course Hours] FROM tblCourseData ORDER BY
tblCourseData.[Course Listing];
The text box used to lookup the Course Hours uses the following Control
Source:
=[Course Name].column(2)
I can make calculations in the form based on the Course Hours text box but
cannot save this data in the 'tblCourseData' table or use the data in a
report to calculate a Sum of several records. Can anyone help?
box. The field that I am trying to calculate is based on a column in a combo
box selection. I can update/calculate the information on a form or report
but the values that are calculated will not store in the underlying table.
Here is an example:
The combo box uses the following Row Source:
SELECT tblCourseData.[Course ID], tblCourseData.[Course Listing],
tblCourseData.[Course Hours] FROM tblCourseData ORDER BY
tblCourseData.[Course Listing];
The text box used to lookup the Course Hours uses the following Control
Source:
=[Course Name].column(2)
I can make calculations in the form based on the Course Hours text box but
cannot save this data in the 'tblCourseData' table or use the data in a
report to calculate a Sum of several records. Can anyone help?