J
John Cosmas
I have created a recordset using a SELECT statement that looks like this,
using DBOPENDYNASET
Set prstTest = CurrentDb.OpenRecordset("SELECT 0 AS IsSelected, * FROM
QRY_CUSTOMERS")
Later in my code, I would like to change to change/UPDATE the ISSELECTED
column from a 0 to 1. I used the .EDIT and set the value to 1, plus I added
the .UPDATE after I am done. Unfortunately, the row/column did not not get
updated. Help.
John
P.S. - The ISSELECTED is not part of the original table to QUERY; it is
added into the SELECT statement when opening the recordset
using DBOPENDYNASET
Set prstTest = CurrentDb.OpenRecordset("SELECT 0 AS IsSelected, * FROM
QRY_CUSTOMERS")
Later in my code, I would like to change to change/UPDATE the ISSELECTED
column from a 0 to 1. I used the .EDIT and set the value to 1, plus I added
the .UPDATE after I am done. Unfortunately, the row/column did not not get
updated. Help.
John
P.S. - The ISSELECTED is not part of the original table to QUERY; it is
added into the SELECT statement when opening the recordset