I'm attempting to create a database which will take information from
one (perhaps two) tables and utilize that information to return
queries to a report designed in Excel.
The general idea I have is this:
The "primary" or "source" table is easy. This is a trial balance
(account number as a primary key, description, amount).
I'll need table(s) to denote which account numbers belong to which
page/line on the report. I'm not sure how many pages the report will
be, but let's say my Excel workbook would have 50 sheets. My question
is this: What would you recommend for a table structure. The way I
see it, I could have a single table listing each page and each line on
each page (each identified by a unique id), then have another table
listing each account and each page/line id. The other option I see is
to have a separate table for each "page," but I'm not sure I see a
benefit in this. My first instinct is to use the first method I
mentioned, but I wanted someone else's opinion before I moved on.
TIA
Mike
one (perhaps two) tables and utilize that information to return
queries to a report designed in Excel.
The general idea I have is this:
The "primary" or "source" table is easy. This is a trial balance
(account number as a primary key, description, amount).
I'll need table(s) to denote which account numbers belong to which
page/line on the report. I'm not sure how many pages the report will
be, but let's say my Excel workbook would have 50 sheets. My question
is this: What would you recommend for a table structure. The way I
see it, I could have a single table listing each page and each line on
each page (each identified by a unique id), then have another table
listing each account and each page/line id. The other option I see is
to have a separate table for each "page," but I'm not sure I see a
benefit in this. My first instinct is to use the first method I
mentioned, but I wanted someone else's opinion before I moved on.
TIA
Mike
Comment