Forum Discussion
TheBoss86
Oct 16, 2020Copper Contributor
Using Conditional Formatting with two types of data
I am trying to come up with a formula to highlight a cell when it is less than a number and column F = Service B. I have tried this formula "=AND($F:$F="Service B",$E:$E,30000)" but it does not work...
- Oct 16, 2020
TheBoss86 Here you go. I have it as less than, not greater than.
Erut313
Oct 16, 2020Brass Contributor
If you are trying to do this to a Table, then you have to do it like this.
=IF(AND($F2="Service B",$E2<30000),1,0)
Then for "Applies to", enter the range you want it to happen to.
ā