Thread: Logic Statement
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Rosenfeld
 
Posts: n/a
Default Logic Statement

On Tue, 14 Mar 2006 10:43:31 -0600, abierly
wrote:


Hello. I'm trying to have one cell look at two other cells to determine
its entry.

This what I'm stuck on:

=If(E4=1 and E7=1, 60, if(E4=1 and E7=2, 50, if(E4=1 and E7=3, 40,
if(E4=2 and E7=1, 30, if(E4=2 and E7=2, 20, if(E4=2 and E7=3, 10,
if(E4=3 and E7=1, 15, if(E4=3 and E7=2, 10, if(E4=3 and E7=3, 5,
0)))))))))

Can anyone please help me?


Here's one approach:

=IF(AND(E7=1,E7<=3),
IF(E4=1,CHOOSE(E7,60,50,40),
IF(E4=2,CHOOSE(E7,30,20,10),
IF(E4=3,CHOOSE(E7,15,10,5)))),0)


--ron