AM_Hawk
AM_Hawk

Reputation: 681

Syntax for IF statement in Conditional Formatting

I would like to know if the following can be achieved:

Cell F4: =IF(C4>=F3 && C4<M3) = TRUE

When returned True I will conditionally format the cell with a background colour.

I am just unsure of how to write the formula.

Upvotes: 0

Views: 2836

Answers (1)

pnuts
pnuts

Reputation: 59460

Please try =AND(C4>=F3,C4<M3)

Upvotes: 2

Related Questions