Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating Checkboxes on a Report

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am trying to update Checkboxes on a report. Error states that I cannot update field. At first I am just set all of the fields to false. I can't seem to update the report field. Then I will set up a recordset and select from an intersection table and then set check box to true if value is found in table.
Code tried:

For ChkServNumber = 1 To ChkServCnt
Me.[("ChkServ" & ChkServNumber)] = False
Next ChkServNumber

For ChkScaleNumber = 1 To ChkScaleCnt
Me("ChkScale" & ChkScaleNumber) = False
Next ChkScaleNumber
 
A report is just for viewing and printing data in your database. You cannot update data in a report.

If you want to update your tables you can either open the table and update directly or use a form or query. Maq B-)
<insert witty signature here>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top