Google-sheets – Formatting a cell based off of the rest of the row

conditional formattingformulasgoogle sheets

I have a spreadsheet keeping track of the various documents that students of mine have been turning in. The first column contains names and each column after tracks a particular document.

Is there a way for a student's name to be highlighted if any one of the other columns has a checkmark? I, therefore, would like the first cell of a row highlighted if there is an "x" anywhere in the rest of the row.

I hope this makes sense.

Best Answer

The formula you need for range A1:A is:

=and(A1<>"",counta(B1:J1)<>0)  

enter image description here