I have data in an Access query in this format:
Depending on how/when the scores were entered, which can be random as above. Fixture is always parent to 2 teams.
I would like to present it as follows:
- Fixture1: Team A 1-2 Team B
- Fixture2: Team C 3-1 Team D
I think I can still write code to do that, but I was thinking it should possibly be done in a query rather than code...?
I have tried a Crosstab query but I am ending up with something like this:
This is my current Crosstab query:
TRANSFORM Sum(FixtureResultGoalQ.Score) AS SumOfScore SELECT FixtureResultGoalQ.FixtureID, Teamname, Sum(FixtureResultGoalQ.Score) AS [Total Of Score] FROM FixtureResultGoalQ GROUP BY FixtureResultGoalQ.FixtureID PIVOT FixtureResultGoalQ.TeamName;
Is this something I should be able to do in a (Crosstab) query?
Thanks.

