It's a Word 2000 table containing two columns. One's got the various
pieces of data in as text and the other has check boxes I've inserted
from the Forms tool bar.
As I say, if I get rid of the check boxes and just enter Y or N it works
perfectly.
If it's any help, I do know how to do something similar using a form in
Access. It's something I set up for a acupuncturist so he can record
the needle points he uses by clicking unbound checkboxes and referencing
their tag property:
Private Sub SaveSession_Click()
Const SQL_1 = "INSERT INTO tblSessionsNeedlings " & "(SessionID,
NeedlingID) VALUES ("
Dim dbD As Database
Dim strSQL As String
Dim ctlC As Control
Set dbD = CurrentDb
For Each ctlC In Me.Controls
If ctlC.ControlType = acCheckBox Then
If ctlC.Value = True Then
strSQL = SQL_1 & Me!textSessionID & ", " & ctlC.Tag & ");"
dbD.Execute strSQL, dbFailOnError
End If
End If
Next
End Sub
and then use the NeedlingID to pull out the "NeedleDescription" text
field associated with it to print a description of the points used, but
I don't know how to translate that into something I could use in Word.
Steve