If your querry holds both Home and away scores then you can add a calculated field with:
High Score: IIf([HomeScore]>[AwayScore],[HomeScore],IIf([HomeScore]<[AwayScore],[AwayScore],IIf([HomeScore]=[AwayScore],[HomeScore])))
I tested it and it worked to show the high score for each record.