
Originally Posted by
racefan91
Ok, so I'm finally getting back around to looking at this. I have it somewhat working. I have my MovieActorJunction table which has MovieID and ActorID.
Here is my code
SELECT tblMovies.MovieName, ConcatRelated("ActorID","tblMoviesActorsJunction", "MovieID = " & [MovieID]) AS Actors
FROM tblMovies;
This produces the movie name called out in Text but the Actors show up as the ID number
MovieName Stars
Jurassic World 1, 2, 3
Is there a way to get the numbers to show up as the Actor Names?