Using Join/Collect to Collect from Another Sheet, Two Criteria

In Sheet 1, I want to identify the color of the title of a book that matches ISBN number, so long as the book is available in the library.
Sheet 2
AvailableΒ Β Β |Β Β BookTitle1
UnvailableΒ Β |Β Β BookTitle2
UnvailableΒ Β |Β Β BookTitle3
AvailableΒ Β Β |Β Β BookTitle4
AvailableΒ Β Β |Β Β BookTitle5
Β
I want to look for a value (e.g., BookTitle__) and display that title if it is available.Β
So, for example, in Sheet 1, if I have BookTitle1, it looks in Sheet 2 for BookTitle1, and if it finds it, it displays it in Sheet 1 ONLY if it says Available in the first column. It does, so it displays "BookTitle1".
If I had BookTitle2 in Sheet 1, it would find BookTitle2 in Sheet 2; however, it would say "Not Available" in sheet 1 because the value in column 1 of Sheet 2 is "Unavailable".
If I had BooktTitle 8 in Sheet 1, i would display "Not Available" because it not even listed in column 2 of Sheet 2.
I know its INDEX/MATCH, but I do not know how to include the "Available/Unavailable" criteria when deciding to show the book title.
Comments
-
You could actually use an IF statement for this. Basically the only way to return "Available is if the title is available. The other two possibilities would return "Unavailable".
Β
So give something like this a try...
Β
=IF(COUNTIFS({Other Sheet Book Title Column}, [Book Title]@row, {Other Sheet Availability Column}, "Available") > 0, "Available", "Unavailable")
.
Basically we count how many times that book's title and the word "Available" are in the same row. If that number is greater than 0 meaning that there is a row that meets both requirements, then we show it as "Available", else "Unavailable".
-
Logically, I totally get this. I tried it, and I am getting a #CIRCULAR REFERENCE error. Both are separate columns in the first sheet:
=IF(COUNTIFS({CMRED-D2LMasters}, [D2L Master]@row, {CMRED-DevStatus}, "No Master") > 0, [D2L Master]@row, "No Master")
Β
{CMRED-D2LMasters} is the column with the names of the course master in Sheet 1
[D2L Master]@row is the cell with the course master name in consideration in Sheet 2 (where I wrote this formula)
{CMRED-DevStatus} is the column with the development status of the course master in Sheet 1 (it is either "Completed", "In Review", "In Progress", or "No Master").
Β
Whether or not the master listed in Sheet 2 is listed in Sheet 1 or not (or if the status is or is not "No Master"), I get the #CIRCULAR REFERENCE error. I do not have any error in Sheet 1 in these columns.
-
"[D2L Master]@row is the cell ....... (where I wrote this formula)"
Β
Referencing the cell the formula is in is where the circular reference comes from.
Β
Try putting the formula in a differentΒ column. Use this second column for the display column and hide the [D2L Master] column.
Help Article Resources
Categories
Check out the Formula Handbook template!