Apr 18 2023 08:22 AM
I would like to set the background color of a cell based on the numerical content of a range of cells in a different sheet of my workbook. Specifically, I want a cell to change color if any cell is a range of cells on another sheet has a value in it. Thanks
Apr 18 2023 09:45 AM
SolutionHi @DannyDDG
See attached file where Sheet1!A1:A3 have Conditional Formatting rules that highlight cells if Sheet2!A1:K1, Sheet2!A2:K2... range has at least 1 value
Apr 19 2023 10:32 AM
Thank you so much. I'm having trouble seeing the actual formula used to change the color. Is it something like +IF(range) contains value, then background color + red?
Thanks again
D
Apr 19 2023 10:53 AM
Apr 19 2023 12:37 PM
Apr 20 2023 07:59 AM - edited Apr 20 2023 08:00 AM
Thanks again Lz. I am using =COUNTIF('EVM Work Order'!$J$13:$U$13,"<>") in my application and it works great. What would be the proper condition for any value greater than 0 in the range selected?
Apr 20 2023 08:25 AM
Hi @DannyDDG
What would be the proper condition for any value greater than 0 in the range selected?
=COUNTIF('EVM Work Order'!$J$13:$U$13,">0")
or
=COUNTIF('EVM Work Order'!$J$13:$U$13,">" & 0)
(I have pref. for the 2nd)