Share via

Excel formatting into a spill table, highlighting of unique items.

Justin Pappas 0 Reputation points
2026-03-06T14:22:44.0366667+00:00

User's image

In my "Master" sheet, I have a list of SKU's in Column "A", description on column "B", then Ingredient component numbers in "C", then that table repeats throughout my product codes. In my "lookup" sheet, I have it to where I type in a specific sku, and it brings that spill table over for me, just showing that SKU's information and picture.

(Code)

=LET(r,FILTER(Master!C:P,Master!$A:$A&""=$A$2&"",""),IF(r=0,"",r))

This works perfectly.

However, some SKUS have unique ingredients that only belong to that item. I want to be able to have that highlighted in the table in my "Lookup" sheet. I need to be able to quickly see if an ingredient is only used in that SKU and have it visibly show that for quick reference.

Example of "Master" User's image

This information is pulled into my lookup sheet.

Example of my lookup sheet. User's image

I want unique items to that SKU to be highlighted in this lookup table from my master sheet. I have tried some unique helpers, and formulas, but I can't seem to figure this one out.

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments

2 answers

Sort by: Most helpful
  1. Q&A Assist
    2026-03-06T14:23:03.1933333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Use conditional formatting with a COUNTIF-based rule that checks each ingredient against the full list of ingredients on the Master sheet, and apply that rule to the spilled range on the Lookup sheet.

    Assume on the Lookup sheet the spilled ingredients are in column C (adjust as needed):

    1. Select the ingredient cells in the spilled range on the Lookup sheet (for example C4:C100).
    2. On the Home tab, select Conditional Formatting > New Rule.
    3. Choose Use a formula to determine which cells to format.
    4. Enter a formula that tests whether the ingredient appears only once in the entire Master list. For example:
         =COUNTIF(Master!$C:$C, C4)=1
      
      • Master!$C:$C is the full ingredient column on the Master sheet.
      • C4 is the first ingredient cell in the Lookup spilled range.
    5. Select Format, choose the fill/font format to highlight unique ingredients, and select OK.
    6. Confirm with OK again.

    Every ingredient that exists only once in Master!$C:$C (i.e., unique to that SKU) will now be highlighted in the Lookup sheet’s spilled table.

    If the ingredients are in a different column or multiple columns, repeat the rule for each ingredient column, adjusting the cell reference (C4) and the Master ingredient column as needed.


    References:

    1 person found this answer helpful.
    0 comments No comments

  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.