M
MNID13
I created a Q&A Test database (100 questions)...I would like to reset the
answer field (StAnsr) and leave the remaining fields undisturbed. Below is
the code that I am using:
Dim REC As Recordset
Dim RemString, workingdata As String
Dim DBS As Database
Dim Zero As String
Set DBS = CurrentDb()
Zero = " "
RemString = "Select [TstTkr2007tbl].[StAnsr] From [TstTkr2007tbl] WHERE
([TstTkr2007tbl].[StAnsr] = " * ") "
Set REC = DBS.OpenRecordset(RemString)
RemString = Zero
While (Not (REC.EOF))
REC.MoveNext
Wend
REC.Close
DBS.Close
Any help figuring this out would be helpful...this thing is giving me fits...
answer field (StAnsr) and leave the remaining fields undisturbed. Below is
the code that I am using:
Dim REC As Recordset
Dim RemString, workingdata As String
Dim DBS As Database
Dim Zero As String
Set DBS = CurrentDb()
Zero = " "
RemString = "Select [TstTkr2007tbl].[StAnsr] From [TstTkr2007tbl] WHERE
([TstTkr2007tbl].[StAnsr] = " * ") "
Set REC = DBS.OpenRecordset(RemString)
RemString = Zero
While (Not (REC.EOF))
REC.MoveNext
Wend
REC.Close
DBS.Close
Any help figuring this out would be helpful...this thing is giving me fits...