Vegas Valley - Didn't GOTV


There were 128,419 active registered Democrats and 69,365 active registered Republicans in Nevada’s Clark County that did not vote in the 2020 General Election.

The numbers are based on Clark County’s Voter List file. Due to people moving and passing away, election departments from around the nation are challenged when attempting to keep voter rolls up to date. Clark County Nevada is no different.

SQL:

SELECT a.PRECINCT,
   Count(a.PRECINCT) AS NoVote
FROM County_all a
WHERE a.STATUS = "A" AND
   a.PARTY_REG = "DEM" AND
   a.ELECTION1 Is Null
GROUP BY a.PRECINCT;

Source Data: Clark County Elections Department, Voter List data file - all voters, File generated 11/17/2020 9:08 PM 2020 Census (P.L. 94-171) Geographic Products

QGIS was the Geographic Information System (GIS) software used for this project. Microsoft Access and Microsoft Excel were used to prepare the data.