Reputation: 3
I'm trying to automatize the result of a cell based on the color or data from a range. Explanation: It will be a "OK" or "NOT OK" in a cell when there are red cells in a range or when there are some words there. Down is the image about an example of the table I want to work with.
I want to know if it is possible to do it only with formula or have to do it through VBA.
Upvotes: 0
Views: 45
Reputation: 94
If you need to use the color you will have to use vba, you can check the color of a cell with Cell.Interior.Color
On a side note, if you do not want to use vba you could use the condition you use for your conditional formatting (Assigning the color to the cell) in the cell formula instead of using the color.
Upvotes: 1