0

I have a formula used for conditional formatting:

=OR(ISNUMBER(FIND(Primary,INDIRECT(ADDRESS(ROW(),2)))),ISNUMBER(FIND(Secondary,INDIRECT(ADDRESS(ROW(),2)))),INDIRECT(ADDRESS(ROW(),2))="ALL")

The formula is intended to highlight a cell if a value in the "B" column matches the value in the Primary field, the Secondary field, or is set to "ALL".

When pasted into any cell in a row, it returns the appropriate TRUE or FALSE value, however when used as a formula for conditional formatting, no cells receive any formatting.

1 Answer 1

1

get rid of the indirect and ROW():

=OR(ISNUMBER(FIND(Primary,$B1)),ISNUMBER(FIND(Secondary,$B1)),$B1="ALL")

Make the sure the row refers to the first row in the Applies to: range. So in this it is expeted that you are using full column reference or that the range starts on row 1.

If it is different then change the 1s to the first row in the applies to range.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.