I have a database that I use to track my workouts. I am very new to Access and am just starting to learn some simple VBA code.
I have the following tables:
tblBodyFocus
Body Type
tblExcercises
Excercise_ID
Excercise
Body Type (Foreign)
tblWorkoutLog
Log_ID
Excercise_ID (Foreign)
Date
What I would like to do is generate a query that will give me a summary of workout dates and Body Type. Each date can have several excercises but each excercise only has 1 body type associated with it. What I want to avoid is multiple listings for body types. In other words I want to generate this:
Date
10/25/05
10/25/05
11/2/05
11/2/05
but not:
Date
10/25/05
10/25/05
10/25/05
I'm new to this so I may not have given you enough information. I don't have any code to post at this point but please let me know if I you need any additional info.
Thanks.
I have the following tables:
tblBodyFocus
Body Type
tblExcercises
Excercise_ID
Excercise
Body Type (Foreign)
tblWorkoutLog
Log_ID
Excercise_ID (Foreign)
Date
What I would like to do is generate a query that will give me a summary of workout dates and Body Type. Each date can have several excercises but each excercise only has 1 body type associated with it. What I want to avoid is multiple listings for body types. In other words I want to generate this:
Date
-Body Type10/25/05
-Arms10/25/05
-Legs11/2/05
-Arms11/2/05
-Absbut not:
Date
-Body Type10/25/05
-Arms10/25/05
-Arms10/25/05
-ArmsI'm new to this so I may not have given you enough information. I don't have any code to post at this point but please let me know if I you need any additional info.
Thanks.