How to color rows based on two cell values in Open/Libre Office?

3

I am trying to apply conditional formatting to an entire row based on two cell values. The style is to be applied only if both cells have a particular value. I tried applying formula of the form:

$A1="Value1" & $B1="Value2"

But it does not apply the style. How to solve this in Libre Office?

nxkryptor

Posted 2015-04-12T08:52:39.420

Reputation: 131

Answers

1

Just use the AND() function to combine the two conditions:

  1. First, use "Formula is..." as criteria;

  2. then enter

    AND($A1="Value"; $B1="Value")

enter image description here

Depending on your local settings, in that formula, you may have to replace the semicolon ; by a comma ,.

tohuwawohu

Posted 2015-04-12T08:52:39.420

Reputation: 8 627