• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Help me, conditional formatting.

iRasim

Member
I want to know if in column numbers A, C ,E less than number column G make that cell red. For example C2 (1) less than g2 (2,5).
 

Attachments

  • help.xlsx
    9.1 KB · Views: 2
Thanks you a lot. That`s great.That`s what I want. Could you say how i can find explanation of the formula that you gave ?
 
You are welcome
=AND(NOT(ISBLANK(A2)),A2<$G2)

So ConF. is applied if cell returns TRUE.
Function And returns TRUE if all conditions are TRUE
In this case we have to conditions:
1. NOT(ISBLANK(A2)) -- this returns TRUE if cell is not empty ( if this condition wasnt applied empty cells would be formatted as well )
2. A2<$G2 -- this one should be fairly obvious

if anything unclear just let me know
 
Back
Top