why does the next statement result in an error message
MsgBox Application.CurrentData.AllTables(tblECG).Properties.Item(1).Value
The Error: " The expression you entered refers to an object that is closed or doesn't exist'.
error number: 2467
any other suggestions to get a specified value from a table
Hi
What are you trying to read form the table, data or one of its properties
Hi,
Could this be because you missed the quotes around the table name
MsgBox Application.CurrentData.AllTables("tblECG").Properties.Item(1).Value