I finally decided to transform my list of movies that I've seen from word to access after watching some youtube videos, as they made it seem easy enough.
I have tables:
Movies (MovieID, MovieName, MovieYear, MovieGenre, MovieActors, MovieActresses, MovieDirectors, MovieCountries, MovieStudios...)
Genres (GenreID, Genre)
Actors (ActorID, ActorNameandSurname, ActorYoB, ActorYoD, ActorCountry, Picture)
Actresses (ActressID, ActressNameandSurname, ActressYoB, ActressYoD, ActressCountry, Picture)
Directors (DirectorID, DirectorNameandSurname, DirectorYob, DirectorYoD, DirectorCountry, Picture)
Studios (StudioID, Studios)
ActorCojnunction (ActorID, MovieID)
ActressConjunction (ActressID, MovieID)
DirectorConjunction (DirectorID. MovieID)
StudiosConjunction (StudioID, MovieID)
GenresConjunction (GenreID, MovieID)
It all works well enough except now I'm at the form stage. I want to make a searchable form for each of the specific tables that I have. Meaning I want to search through a combo box either by typing in or by selecting that specific value through a list. I want what I type/click to show up. So I made a continues form to show all the movies in my main table (Movies) to which all the others are linked up through relationships.![]()
All the movies show up. Next I created a combo box and through a querry I selected actors. Due to the fact that one actor can be in multiple movies I needed to group them up which I did through clicking the totals in the design stage. It worked and I could see just one record per actor. But when I went on the form and I clicked through them it just showed me movies where I had put one actor in. You see I, as a test to see if this will work, had put a few test records in.
1 ---- Movie 1 ---- Drama ----- -----------2005 ---- -Acotor 1, Actor2, Actor 3 ------ Actress 7 ----- -------------------------Director 1 ----- Country 1 ----- Studio 1
2 ---- Movie 2 ---- Comedy ----- ----------2011 ---- Acotor 4, Actor5, Actor 6 ------ Actress 6 ----- -------------------------Director 1 ----- Country 2 ----- Studio 2
3 ---- Movie 3 ---- Horror ----- ------------1977 ---- Acotor 1 ------ -------------------Actress 1, Actress 4, Actress 5 ----- Director 1 ----- Country 1 ----- Studio 3
4 ---- Movie 4 ---- Drama, Comedy ----- -1968 ---- Acotor 1, Actor6 ---------------- Actress 2, Actress 3 ----- -------------Director 1 ----- Country 1 ----- Studio 4
Now when I search through the combo box it only shows me the records where one actor is written.If I delete actors and leave just one there, then the combo box works well and all the records show as intended. But as soon as I put an additional actor there then the movie doesn't show, when I click on either of the two actors in the combo box.
.
I am fairly new at this. Meaning I had some access training is school, but that was long ago. We worked on 2007 at the time. So I'm just getting back into it. What should I do to make this work?