Share via

Conditional Format

Anonymous
2022-07-19T16:03:33+00:00

Need help with conditional format, How do you managed rules for when top roll is set for closed, pending or open to change column to same format as if its closed, open or pending? When click on drop box on W1 and pick closed (which is gray box with red letter) I need column W and Z to change to gray and red letter when its closed. Same with Open ( green box with green Letter) and Pending is yellow with blue letters.

Microsoft 365 and Office | Excel | For business | 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

1 answer

Sort by: Most helpful
  1. HansV 462.6K Reputation points
    2022-07-19T18:37:03+00:00

    Select all the columns that you want to format this way.

    For the sake of illustration, I will assume that the selection begins in column W, and that the active cell in the selection is in column W.

    On the Home tab of the ribbon, select Conditional Formatting > New Rule...

    Select 'Use a formula to determine which cells to format'.

    Enter the formula

    =OFFSET(W$1,0,-ISEVEN(COLUMN(W$1)))="CLOSED"

    Click Format...

    Activate the Font tab.

    Select red as font color.

    Activate the Fill tab.

    Select gray as fill color.

    Click OK. then click OK again.

    Repeat these steps, but with the formula

    =OFFSET(W$1,0,-ISEVEN(COLUMN(W$1)))="OPEN"

    and with dark green as font color and light green as fill color.

    Also repeat them with the formula

    =OFFSET(W$1,0,-ISEVEN(COLUMN(W$1)))="PENDING"

    and with blue as font color and yellow as fill color.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments