I have one report based on a table. I need to create identical reports for
other tables. Is there a way to simply copy the report format?
Just copy and paste the report to a new report and change the Recordsource
property... BUT!!!
Linq is absolutely correct. If you have multiple tables of identical
structure, differing only by table name, your database structure is *wrong*.
You should NEVER store data in tablenames.
Instead, put all the data in *one* table, with an additional field to
distinguish what are now separate table names, and base your report on a Query
selecting a subset of the data based on that field.