I am trying to create a COUNTIFS formula to count the number of times a book title appears in a range from another sheet AND if a checkbox is checked (also from that other sheet). The cells with the book titles contain multiple titles so I've been using a CONTAINS formula to match for each book title. I can get both working separately but it breaks when I try to string them together:
=COUNTIFS({OTHER SHEET RANGE A}, CONTAINS([BOOK TITLE]@row, @cell))
=COUNTIFS({OTHER SHEET RANGE B}, 1)
But it breaks when I try to string together like this:
=COUNTIFS({OTHER SHEET RANGE A}, CONTAINS([BOOK TITLE]@row, @cell), {OTHER SHEET RANGE B},1)
The other source sheet looks like this (but with 13 different Book List columns):
The sheet that is housing this formula and the book title cell to match looks like this:
Each student will have a row in the source sheet with a book list for each course (across multiple columns). The ultimate goal is to create a count of each title, if Financial Aid is checked, so we can have a count for how many to purchase. A report doesn't seem to work since the book list columns have multiple entries. If a formula won't work, I'm open to other suggestions to meet this goal.
Thank you!