How do I create a access database to projects w/multiple forms?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a database to track projects and I am having trouble
getting my arms around it.
 
Gus L. said:
I am trying to create a database to track projects and I am having trouble
getting my arms around it.

I have a project log in excel and what my company calls a complex design
information sheet. What I want to do is combine the two with one form but be
ablet view the information seperately.
 
I have a project log in excel and what my company calls a complex design
information sheet. What I want to do is combine the two with one form but be
ablet view the information seperately.

The first mental leap to make is:

Forms ARE NOT DATA.

A Form is just a window, a way of viewing data.

When you're building a database, the first thing to do is to *forget
about* forms, and how the data will be displayed; that's secondary.
Instead, identify the real-life things, persons, or events of
importance to the application - the "entities". A Project would
clearly be an entity; I'd guess you'll need a table to contain the
people working on the project, perhaps a table of goals, perhaps a
table of project checkpoints: I don't know your business model, so I
don't know what tables there will be, other than that there will be at
least a few other tables.

Once you have the LOGICAL structure of the data, you can build a Table
for each type of entity.

*THEN* you can start thinking about using Forms to combine and display
that information onscreen, or Reports to print the information to
paper. These Forms and Reports would typically draw information from
multiple tables, using Queries, Subforms, Combo Boxes and the other
tools that Access provides.

John W. Vinson[MVP]
 
Gus L. said:
I am trying to create a database to track projects and I am having trouble
getting my arms around it.

I am trying to merge two forms one is a project log and the other is a form
called a complex design request so all the information is in on local but can
be called up and searched independantly of each other.
 
I am trying to merge two forms one is a project log and the other is a form
called a complex design request so all the information is in on local but can
be called up and searched independantly of each other.

Gus, Lynn and I have both answered your previous posts. Did you see
those replies?

Reposting the same question over and over is neither necessary nor
polite.

John W. Vinson[MVP]
 
Back
Top