I have a Boxscore Report but it shows boxscores for all games. How do I show boxscores for only "League" and "Post-Season" (or some other type)?
From the "Preferences" panel, under "Report Popup Menu Options", you will need to modify the "Filter" option under the "Game (Boxscore) Type column. The default is "<none>" which shows boxscores for all games. To allow for only League and Post-season game types, select:
WHERE GameType = 'League' OR GameType = 'Post-Season'
To allow for a custom Game Type, you can type in the combination box something like:
WHERE GameType = 'League' OR GameType = 'Tournament'