A family of Microsoft relational database management systems designed for ease of use.
Again, you need to update the column headings property of your crosstab query. I'm expecting there is at least one record with nothing in the [Good Show/ Bad Show] field. Try this SQL:
PARAMETERS [Forms]![TeamFilter]![Start Date] DateTime, [Forms]![TeamFilter]![End Date] DateTime;
TRANSFORM Count([Performance Window Extended].[ID ENTRY]) AS [CountOfID ENTRY]
SELECT [SPV Names].SPVNameRank, Count([Performance Window Extended].[ID ENTRY])
AS [Total Of ID ENTRY]
FROM [SPV Names] INNER JOIN [Performance Window Extended] ON [SPV Names].ID =
[Performance Window Extended].[Reporting SPV]
WHERE ((([Performance Window Extended].[PW Date]) Between [Forms]![TeamFilter]![Start Date] And [Forms]![TeamFilter]![End Date]))
GROUP BY [SPV Names].SPVNameRank
PIVOT [Performance Window Extended].[Good Show/ Bad Show] IN ("Good Show","Bad Show");