Say I have an attendance list for a class:
The Class1:Class3 fields are data-validated to have Xs or Blanks depending on whether a student is present or not.
The Total column counts Xs in the corresponding row to get an attendance total for the student.
I have another table tracking Class data, as opposed to student date:
I use a COUNTIF function in the 'Attendance Total' column to add Xs in the corresponding class column in the other table. But... the formula doesn't AutoFill properly!
Can I not AutoFill a formula in a column based on a pattern that varies by row?
Any workarounds?
Trying to complete report card season in 5 minutes.
Student | Class 1 | Class 2 | Class 3 | Total |
---|---|---|---|---|
Alpha | X | X | X | COUNTIF(B2:C2,"X") = 3 |
Bravo | X | 1 | ||
Charlie | X | X | X | 3 |
Delta | X | X | 2 | |
Echo | X | X | X | 3 |
Foxtrot | X | X | X | 3 |
Golf | X | X | X | 3 |
The Class1:Class3 fields are data-validated to have Xs or Blanks depending on whether a student is present or not.
The Total column counts Xs in the corresponding row to get an attendance total for the student.
I have another table tracking Class data, as opposed to student date:
Class | Attendance total |
---|---|
1 | =COUNTIF(Table1[B2:B8],"X") = 8 |
2 | |
3 |
I use a COUNTIF function in the 'Attendance Total' column to add Xs in the corresponding class column in the other table. But... the formula doesn't AutoFill properly!
Can I not AutoFill a formula in a column based on a pattern that varies by row?
Any workarounds?
Trying to complete report card season in 5 minutes.