Ifs and Ands - I'm confused!

Ifs and Ands - I'm confused!

Post by C Tat » Fri, 24 Feb 2006 03:04:50


I have a spreadsheet with 5 columns. Column C is Region and D is revenue. If
C is East and D is less than 10 (00), then project increase in E is 8%,
otherwise everything is unchanged. I can do one condition with an if
statement but I need an 'and' in there too, I think, in order to be able to
work out a proper logical function!! Can anyone help?
 
 
 

Ifs and Ands - I'm confused!

Post by Steve » Fri, 24 Feb 2006 03:18:02


You can combine the AND and IF formulas. Not sure if you want the
formula to multiply a value by 8% but you could modify this to suit
your needs.

=IF(AND(C1="East",D1<10),8%,"")

or

=IF(AND(C1="East",D1<10),A1*8%,A1)

Again, not sure if you want to display the 8% or a value times it.


Does that help?

Steve


--
SteveG
------------------------------------------------------------------------
SteveG's Profile: http://www.yqcomputer.com/
View this thread: http://www.yqcomputer.com/

 
 
 

Ifs and Ands - I'm confused!

Post by am9ldTIwMD » Fri, 24 Feb 2006 03:27:28


=if(and(C2="East",D2<10),D2*(1+8%),D2)
 
 
 

Ifs and Ands - I'm confused!

Post by C Tat » Fri, 24 Feb 2006 06:40:08

Many thanks. That's great guys. Is there anywhere on the net I can read
about how to combine these and and ifs myself?
"SteveG" < XXXX@XXXXX.COM > wrote in