Forum Discussion
Ok. I have attached a clean workbook. I added the prompts that I am needing a formula for so the cells can format properly.
Thanks. Select A2:G19 and clear the existing rules.
Then select A2:A19.
Hold down Ctrl and select C2:C19, then E2:E19 and finally G2:G19.
The active cell in the selection should be in row 2 (i.e. A2, C2, E2, or G2 - it does not matter which of these).
Set the fill color to red - this will be the default.
We're going to create only one rule.
On the Home tab of the ribbon, click Conditional Formatting > New Rule...
Select 'Use a formula to determine which cells to format'.
Enter the formula
=AND(OR(AND($A2<>"", $C2<>"F1IL", $E2=""), AND($A2="", $C2="F1IL", $E2<>"")), $G2>0.17)
This formula is a direct translation of the two conditions for cells to be green. In both conditions, G2 (Hours)should be greater than 0.17. In one condition, A2 (Job) should be filled in, C2 (Work Center) should not be F1IL, and G2 (Code) should be blank. In the other condition, these are reversed.
Click Format...
Activate the Fill tab.
Select green as fill color.
Click OK, then click OK again.
See the attached version.
- AmberTafollaAug 19, 2024Copper ContributorI can't have the default be red, or the people entering the information on this spreadsheet won't be notified that they entered something in wrong. That is why I was looking for information on how to create the different formulas.
The spreadsheet needs to start off blank and then populates with color when information is entered right or wrong so that person knows if they need to fix their entries without me having to tell them.
If I know how the formula works I should be able to adjust it for all the different conditions. - HansVogelaarAug 19, 2024MVP
As long as the conditions for green are not satisfied, there will be something missing or incorrect, so it's reasonable to color the cells red...
- AmberTafollaAug 19, 2024Copper ContributorExcept some of the rows may need to be skipped because they don't need to be filled out at that time in which case they shouldn't be colored in since the information isn't wrong or missing.
If I knew how the formula worked I would be able to adjust it for all the different conditions that I need since this isn't an easy peasy spreadsheet where one format condition will work. - HansVogelaarAug 19, 2024MVP
You can easily translate the conditions to formulas. For example, red if
job has number and work center is f1il and code is entered and hours are blank or "0"
translates to
=AND($A2<>"", $C2="F1IL", $E2<>"", $G2=0)
Similarly
job has no number and work center is not f1il or blank and code is blank and hours are greater than .17
translates to
=AND($A2="", $C2<>"F1IL", $E2="", $G2>0.17)