SOLVED

Conditional formatting with using formula: 'Applies to' is not working properly

Copper Contributor

Hello,

 

Could someone help me for the problem that I'm facing with the conditional formatting?

As you can see in the following image conditional formatting rule sould have been applied to A2:D2 and A3:D3 range. But only the cells of the A column is getting formatted with this rule.

What should I do to apply the format to all of the cells (TRUE values ofcourse) between A and D columns?

 

003.png

 

Thank you in advance!

4 Replies
best response confirmed by OzgunOzden (Copper Contributor)
Solution

@OzgunOzden 

=IF($C2="F",TRUE,FALSE)

=IF($C2="M",TRUE,FALSE)

 

Add the dollar sign before C2. This works in my spreadsheet.

@OzgunOzden 

In addition, it's not necessary to overcomplicate formula with IF(). Just

=$C2="M"

is enough.

1 best response

Accepted Solutions
best response confirmed by OzgunOzden (Copper Contributor)
Solution

@OzgunOzden 

=IF($C2="F",TRUE,FALSE)

=IF($C2="M",TRUE,FALSE)

 

Add the dollar sign before C2. This works in my spreadsheet.

View solution in original post