Hi MrExcel, I have been scouring the board this morning and cant seem to find a solution to what I need.
I have a large data worksheet, reference worksheet and a search sheet i am using to lookup data.
The lookup sheet has a drop down tab of all people. based on your selection Column E3:E100 populate with all Model numbers of various products they own.
Cells B5:B9 has a list of every type of product required for the person selected, this list changes product types using an INDEX and Match function.
My reference sheet identifies what model numbers belong to what product type in separate columns. So Product Type 1 model numbers will always be in Reference!B2:B25, Product Type 2 will always be in Reference!C2:C25, ect
I want to conditionally format B5:B9 to check if the product types they require is on the list of their owned products.
to do this i have done the following =IF(COUNTIF(B5:B9,"Product Type 1"),IF(COUNTIF(E2:E100,Reference!B25),TRUE,FALSE))
However this will only check 1 record on the reference sheet at a time.
I want to use something like =IF(COUNTIF(B5:B9,"Product Type 1"),IF(COUNTIF(E2:E100,Reference!B2:B25),TRUE,FALSE))
But this does not work as the Criteria of the COUNTIF is a range. Is their an alternative function i could use to do this?
I have a large data worksheet, reference worksheet and a search sheet i am using to lookup data.
The lookup sheet has a drop down tab of all people. based on your selection Column E3:E100 populate with all Model numbers of various products they own.
Cells B5:B9 has a list of every type of product required for the person selected, this list changes product types using an INDEX and Match function.
My reference sheet identifies what model numbers belong to what product type in separate columns. So Product Type 1 model numbers will always be in Reference!B2:B25, Product Type 2 will always be in Reference!C2:C25, ect
I want to conditionally format B5:B9 to check if the product types they require is on the list of their owned products.
to do this i have done the following =IF(COUNTIF(B5:B9,"Product Type 1"),IF(COUNTIF(E2:E100,Reference!B25),TRUE,FALSE))
However this will only check 1 record on the reference sheet at a time.
I want to use something like =IF(COUNTIF(B5:B9,"Product Type 1"),IF(COUNTIF(E2:E100,Reference!B2:B25),TRUE,FALSE))
But this does not work as the Criteria of the COUNTIF is a range. Is their an alternative function i could use to do this?