I have a workbook with two sheets. One sheet is a labeled List with filters applied to two of the columns. In the other worksheet, I'm trying to create an IF function that matches any of the data in a particular cell with anything in one of the filtered columns in the other sheet.
I can get it to work when referring to just one cell in the other sheet, but I get error messages when I refer to the whole column of cells.
In other words, this works:
=IF(E3='Loop Library"!F44,"Fujimoto")
But this does not
=IF(E3='Loop Library'!F34:F49,"Fujimoto")
Keep in mind that F34:F49 is a filtered column
I can get it to work when referring to just one cell in the other sheet, but I get error messages when I refer to the whole column of cells.
In other words, this works:
=IF(E3='Loop Library"!F44,"Fujimoto")
But this does not
=IF(E3='Loop Library'!F34:F49,"Fujimoto")
Keep in mind that F34:F49 is a filtered column