Share via

conditional formatting if field contains

Anonymous
2012-06-26T15:18:45+00:00

Would just like to know what the code would be in Conditional formatting for the following.....

If the field contains the word "waiting" then I'd like to turn it blue

Waiting on Tech

Waiting for parts

Waiting for response

Waiting on order

I've already used two of the formats on other items.  Would just like it to change anything with the word "waiting" in it.

Any ideas?

Microsoft 365 and Office | Access | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
  1. Anonymous
    2012-06-26T15:40:29+00:00

    INSTR(1,fieldname,"Waiting")>0

    20+ people found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2012-06-26T15:43:42+00:00

    Select Expression Is in the first dropdown.

    Enter the expression

    InStr([FieldName],"waiting")>0

    where FieldName is the name of the field.

    Specify the desired formatting.

    Click OK.

    10+ people found this answer helpful.
    0 comments No comments