formula question

  • Thread starter Thread starter btcdeb
  • Start date Start date
B

btcdeb

Is there a formula that can change the color of cells if
revenues drop three months in a row and if so what should
the formula be?
 
Hi,
Assuming that your data is in row 1, columns A,B,C, with C
being the latest data, Try using conditional formatting in
cell C1 with the "Formula Is"
=IF(AND(C1<B1,B1<A1),1,0)
HTH
 
Formula only needs

=AND(D1<C1,C1<B1,B1<A1)

you don't need the IF...1,0

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Thanks for the hint!
-----Original Message-----
Formula only needs

=AND(D1<C1,C1<B1,B1<A1)

you don't need the IF...1,0

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top