How can I access data from a table using this method:<br><br>Dim dbs As Database<br>Dim tdf As TableDef<br>Dim fld As Field<br><br>DoEvents<br>Set dbs = CurrentDb()<br>Set tdf = dbs.TableDefs("Employee Table"
<br>tdf.Fields?????<br><br>For example how can I get the 5th cell of the third row?<br>