IslandNation
IS-IT--Management
- Jul 15, 2012
- 2
Table tblBodypartExercises is the junction table between tables tblExercises and tblBodyparts, with the fields of each table populated with sample data as follows:
tblExercises
IdExercise (PK)...Exercise (txt)
..1.................Bench Press
..2.................Chin Up
..3.................Curls
tblBodyparts
IdBodypart (PK)...Bodypart (txt)
..1.................Chest
..2.................Shoulders
..3.................Triceps
..4.................Biceps
..5.................Traps
..6.................Lats
tblBodypartExercises
IdExercise (PK)...IdBodypart (PK)
..1.................1
..1.................2
..1.................3
..2.................4
..2.................5
..2.................6
..3.................4
Form frmExercises is a split form with a datasheet on top listing the exercises and a list box on bottom listing the bodyparts. What I want to do is select multiple bodyparts of the list box to limit (filter) the exercises of the database. How?! I can't figure it out. Please help! Thanks!
tblExercises
IdExercise (PK)...Exercise (txt)
..1.................Bench Press
..2.................Chin Up
..3.................Curls
tblBodyparts
IdBodypart (PK)...Bodypart (txt)
..1.................Chest
..2.................Shoulders
..3.................Triceps
..4.................Biceps
..5.................Traps
..6.................Lats
tblBodypartExercises
IdExercise (PK)...IdBodypart (PK)
..1.................1
..1.................2
..1.................3
..2.................4
..2.................5
..2.................6
..3.................4
Form frmExercises is a split form with a datasheet on top listing the exercises and a list box on bottom listing the bodyparts. What I want to do is select multiple bodyparts of the list box to limit (filter) the exercises of the database. How?! I can't figure it out. Please help! Thanks!