Conditional formatting based on text of cell on another tab

145 Views Asked by At

thank you in advance for your help. I would like to conditional format Sheet1C3 depending if Sheet2C3 contains specific text. IF cell contains text "Closed", format cell colour grey. IF contains text "Active", format cell colour green. I would like this to work for cells C3:W174, corresponding cells Sheet1/ Sheet2. Thank you!

1

There are 1 best solutions below

0
player0 On

green:

=INDIRECT("Sheet2!C3:C")="Active"

grey:

=INDIRECT("Sheet2!C3:C")="Closed"

0