View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default multiple conditions in XL

How about if the number is exactly 5 or exactly 10?

You haven't made any provision for that.

Define your parameters before saying it "don't work"

Is this closer?

=LOOKUP(A1,{0,6,11,16,21},{1.8,1.6,1.4,1.3,1.1})



Gord Dibben MS Excel MVP

On Fri, 26 Jun 2009 08:07:01 -0700, djinn
wrote:

this don't seems to work.
thecondition is like:
if A1 is < 5 then multiply A1 by 1,8, if A1 is 5and <10 then multiply A1 by
1,6 and so on

"Jacob Skaria" wrote:

If the values you mentioned is a range then try the below
=LOOKUP(A1,{0,2,6,11,21},{0,1.8,1.6,1.4,1.3,1.1})

or else use IF conditions
=IF(A1=2,1.8,IF(A1=6,1.6,(IF(A1=11,1.4 ....and so on


If this post helps click Yes
---------------
Jacob Skaria


"djinn" wrote:

hi all,here is the problem:
i need to check numbers and apply a pourcentage depending of the value.
there are 5 category of numbers and pourcentages.sample:
2 then pourcentage 1.8
6 " "" " 1.6
11 " " "" 1.4
16 " " " 1.3
21 " " " 1.1
Thanks for your help