J
John Vinson
Hello John,
Thanks for your answers, I create a table on my database with a macro which
will make the delete records+import excell workbook.It is working thanks to
you and Douglas, What is the easy way to use the record count from this table
in an other table ???
Thanks a lot
The easiest way is ... don't.
Storing a count in a table is neither necessary nor good design; as
soon as the workbook changes the stored count is WRONG.
Instead, count records on the fly with an expression
DCount("*", "[ExcelTableName]")
John W. Vinson[MVP]