0
    SELECT Surname, Firstname, Team_Name, PostCode, Winner, Date_Of_Game,
          Place_Of_GameFROM, tblPlayerProfile 
    INNER JOIN tblTeamDetails 
        ON tblPlayerProfile.Team_ID_Number = tblTeamDetails.Team_ID_Number 
    INNER JOIN tblMatchStatistics 
        ON tblTeamDetails.Team_ID_Number = tblMatchStatistics.Team_ID_Number
    INNER JOIN tblGameResults 
        ON tblMatchStatistics.MatchID = tblGameResults.MatchID
    WHERE (((tblGameResults.MatchID)=[FormsReport]![MatchFormReportD8]![Combo10]));

I'm having trouble

Charles
  • 50,943
  • 13
  • 104
  • 142
arabistic
  • 9
  • 1
  • 3

2 Answers2

1

Place_Of_GameFROM tblPlayerProfile -> Place_Of_Game FROM tblPlayerProfile

JohnnyAW
  • 2,866
  • 1
  • 16
  • 27
0

Check out this query. You forgot to specify FROM.

SELECT Surname, Firstname, Team_Name, PostCode, Winner, Date_Of_Game, Place_Of_Game
     FROM tblPlayerProfile 
    INNER JOIN tblTeamDetails 
        ON tblPlayerProfile.Team_ID_Number = tblTeamDetails.Team_ID_Number 
    INNER JOIN tblMatchStatistics 
        ON tblTeamDetails.Team_ID_Number = tblMatchStatistics.Team_ID_Number
    INNER JOIN tblGameResults 
        ON tblMatchStatistics.MatchID = tblGameResults.MatchID
    WHERE (((tblGameResults.MatchID)=[FormsReport]![MatchFormReportD8]![Combo10]));
unknown
  • 4,859
  • 10
  • 44
  • 62