RequestType: ReportAnalysis ! Notes: No GroupBy statement used. The results will be grouped by precinct. ! This report is not using the TargetElection to enable reporting of eligible vs ineligible voters. ! In the absence of a TargetElection, the most recent election date will be used by default. Report: 'Election_Turnout' Column: 'Total Dem Voters' (Party == DEM) Column: 'Eligible Dems' (Party == DEM ) AND (EligibleVoter == Y) Column: 'Dems Voted' (Party == DEM) AND (VoterVoted == Y) ! Add computed column to show the percentage of eligible dems that voted. Compute: '% Dems Voted' ( 'Dems Voted' % 'Eligible Dems') ! --- Repeate for Reps Column: 'Total Rep Voters' (Party == REP) Column: 'Eligible Reps' (Party == REP ) AND (EligibleVoter == Y) Column: 'Reps Voted' (Party == REP) AND (VoterVoted == Y) Compute: '% Reps Voted' ( 'Reps Voted' % 'Eligible Reps') ! --- Repeate for NPAs Column: 'Total NPA Voters' (Party == NPA) Column: 'Eligible NPAs' (Party == NPA ) AND (EligibleVoter == Y) Column: 'NPAs Voted' (Party == NPA) AND (VoterVoted == Y) Compute: '% NPAs Voted' ( 'NPAs Voted' % 'Eligible NPAs')