HiI'm using the code below to count the number of errors for a given record. Each Score_ field is a bit column and a value of 0 counts as an error. This works fine but I would also like to calculate the total number of records with one or more errors (not the total number of errors) SELECT COUNT(CASE WHEN Score_CorrectID = 0 Then Score_CorrectID END) As Score_CorrectID_Errors, COUNT(CASE WHEN Score_MiniMiranda = 0 Then Score_MiniMiranda END) As Score_MiniMiranda_Errors, COUNT(CASE WHEN Score_Accuracy = 0 Then Score_Accuracy END) As Score_Accuracy_Errors, COUNT(CASE WHEN Score_Notepad = 0 Then Score_Notepad END) As Score_Notepad_Errors, COUNT(CASE WHEN Score_Tone = 0 Then Score_Tone END) As Score_Tone_Errors, COUNT(CASE WHEN Score_PCAResponsive = 0 Then Score_PCAResponsive END) As Score_PCAResponsive_Errors FROM Calls