CSV file not joining to Shapefile using QGIS?
as the above people commented, the problem is that you are trying to join uppercase attribute values in the csv with non-uppercase attribute values in the geometries attribute table. Using the field calculator you can either update your COUNTY_NAM field to uppercase by setting it to
upper( "COUNTY_NAM " )
or create a new field to use for the join.