• 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.

Conditional formatting & if criteria

r_2

Member
Hi,

Need ur help on conditional formatting & if criteria:

I req if E F G H < D colured in Red. D= whole column as my data varies in each row, so need to set formatting against column D, but able to do for D3, where all data format accordingly D3.
requirement:
E3, F3, G3, H3< D3
E4, F4, G4, H4< D4

& continue for total sheet.

for if criteria in case E, F,G, H>=D is Achieved( All E F G H must be equal or > D) if not will reflect Not Achieved.
 

Attachments

  • conditionalformattingBook1.xlsx
    20.1 KB · Views: 4
CF formula is:
=E3>$D3
applied to range E3:H10

Your formula needs to change to:
=IF(D3<=MIN(E3:H3),"ACHIEVED","NOT ACHIEVED")
 

Attachments

  • CF examples.xlsx
    20.3 KB · Views: 5
If I've understood correctly formula should be:
=IF(AND(E3>=D3,F3>=D3,G3>=D3,H3>=D3),"ACHIEVED","NOT ACHIEVED")
For conditional formats, see attached.

ps. post posting and seeing Luke's formula; his is better.
 

Attachments

  • chandoo 17371conditionalformattingBook1.xlsx
    20.1 KB · Views: 3
CF formula is:
=E3>$D3
applied to range E3:H10

Your formula needs to change to:
=IF(D3<=MIN(E3:H3),"ACHIEVED","NOT ACHIEVED")
Thnx luke & p45cal for if response, but enable to get CF details, can u share the step from where i need to start.
 
see attached
 

Attachments

  • chandoo 17371conditionalformattingBook1.xlsx
    20.1 KB · Views: 3
Select cells E3:H9 starting at E3 (this is important).
Conditional Formatting|Highlight Cell Rules|Less Than…
In the field enter:
=D$3
(or select D3 with the mouse, but make sure the $ symbols end up as above)
Choose you format, OK.
 
Back
Top