G
Guest
I have the following line in a program
If IsNull([Test3.cash_bal_amt]) Then GoTo Op22 Els
Test3 is a table, cash_bal_amt is a field in that table. I have tried several ways of putting the name of the field in and it is always rejected as an undefined external file. Test3 exists in the database where the program is located. The database has been defined as Set dbs = CurrentDb and the recordset as Set rst = dbs.OpenRecordset("Test3", dbOpenTable). what changes need to be made to be able to use the table for reading and writing?
If IsNull([Test3.cash_bal_amt]) Then GoTo Op22 Els
Test3 is a table, cash_bal_amt is a field in that table. I have tried several ways of putting the name of the field in and it is always rejected as an undefined external file. Test3 exists in the database where the program is located. The database has been defined as Set dbs = CurrentDb and the recordset as Set rst = dbs.OpenRecordset("Test3", dbOpenTable). what changes need to be made to be able to use the table for reading and writing?