Link to home
Start Free TrialLog in
Avatar of Stephen Byrom
Stephen ByromFlag for Ireland

asked on

Conditional formatting

Hi,
I am looking for some help in applying a conditional format to a number of cells in a number of different rows.
The criteria is as follows;
If the current cell value is greater than 0,
AND
the value of the cell in the same row, but column C is greater than $A$1

I have tried a number of things but it keeps reverting either to a text line in the condition, or giving an error.

I am at home at the moment, and do not have Excel on this laptop.
I will check in again from work tomorrow.

Thanks in advance.
Avatar of Norie
Norie

Which rows/cells do you want to apply the formatting to?
Give this a try:

Conditional Formatting > New Rule . Use a formula to determine which cells to format:
=D2>0
=$C2>$A$1
Then use the format painter to copy the conditional formatting.

Good luck!
Assuming the cell in question is in column B this works perfectly using a single formula:
=AND($B1>0,$C1>$A$1)
I messed up a little on mine. OCDan had a better approach, but to be able to apply the formatting to different columns, you'd want to take off the first $:
=AND(E2>0,$C2>$A$1)
Nice amendment Apothis, makes it a lot easier to use on a number of columns.
Thanks, the AND function was far better than applying 2 rule in my approach, then I forgot to add to stop if true, and I had my > should have been <=. So what I was trying to accomplish:

=D2<=0          (apply no formatting changes) (stop if true)
=$C2>$A$1   (your desired formatting)
Did I miss something?

Where did column D come into this?
D, or B, or E was the 'current cell', as we weren't sure where you wanted to apply the formatting.
Avatar of Stephen Byrom

ASKER

Hi,
Thanks to both for the advice.
I have tried a couple of ways to get it to work, to no avail.
I have attached a copy of the sheet in question so that you can see what I am after.
The numbers in columns G, J, M.....etc. etc. need to change to something noticeable (maybe yellow fill red font) if, (the number is >0 AND the date in column C of the same row is greater than the value of A1.)  We need to be able to notice quickly if we have more than 10 day's stock of any product item, which is why the formula in A1 is "Today()+10"

I update this sheet on a weekly basis and copy/insert copied rows every two weeks, so I would like the conditional formatting to copy down.

I managed to get a simple condition to work with less than 0, but the compound condition and relative to column C of the same row, has me baffled.
Thanks for your time.
Book1.xlsx
Which cells do you actually want to format?

In the attachment you seem to be formatting columns B:AQ, not just columns G, J and M.
Hi,
I have a number of formats going on. But what I need is the numbers in columns G, J, M.....etc. (stock on hand) to change format when the stock on hand is greater than zero AND the date in column C of the same row is greater than the value of A1
Thanks
ASKER CERTIFIED SOLUTION
Avatar of Norie
Norie

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Brilliant!!
Thanks so much for your time!
Looking at the complexity of the formula, I know I would have never worked that out.
Thanks again.