IF AND condition

  • Thread starter Thread starter Ann Shaw
  • Start date Start date
A

Ann Shaw

Hi it's little old me again from Ireland with another
problem function!!

I have Regions and revenues and I want to set a condition
with If and AND together

City Region Rev(?000) ProjIncrease(?000) 2001
Alicante South 10 In this cell I want a
Alicante South 15 formula to say
Alicante South 40 =if(and(????
Alicante South 5 so that if my region is
Amsterdam West 15 East and my Rev is < 20 I
Amsterdam West 30 want to increase rev by
8% otherwise no change.

Thanks a million

Ann
 
=IF(AND(B2="East",C2<20),C2*1.08,C2)

--
Michael J. Malinsky
Pittsburgh, PA

"I am a bear of very little brain, and long
words bother me." -- AA Milne, Winnie the Pooh
 
Try =IF(AND(B2="East",C2<20),C2+(C2*0.08),C2)or try
=IF(AND(B2="East",C2<20),C2*0.08,"")

Charlie O'Neill
 

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