If more than condition forumula

C

Corey

I am trying to set up an IF calculation as below:
=IF(L6="ABC",100,IF(L6="DEF",200,IF(L6="GHI",50)))
The baove is fine but i now need a 2nd condition as below.

I want to add a second condition to it say like:
=IF(P6="" and L6="ABC",100,IF(P6="" and L6="DEF",200,IF(P6="" and
L6="GHI",50, IF(P6="Yes" and L6="ABC",150, IF(P6="Yes" and L6=DEF",250,
IF(P6="Yes" and L6="GHI",75))))))

I try this but get an error.

What syntax do i use other than (and) to include a 2nd condition ??


Corey....
 
B

Biff

Hi!

Here's one way:

=IF(AND(P6="",L6<>""),VLOOKUP(L6,{"ABC",100;"DEF",200;"GHI",50},2,0),IF(AND(P6="Yes",L6<>""),VLOOKUP(L6,{"ABC",150;"DEF",250;"GHI",75},2,0),""))

Biff
 
C

Corey

You are a champ.
Perfect.

Thnx
Corey....

Biff said:
Hi!

Here's one way:

=IF(AND(P6="",L6<>""),VLOOKUP(L6,{"ABC",100;"DEF",200;"GHI",50},2,0),IF(AND(P6="Yes",L6<>""),VLOOKUP(L6,{"ABC",150;"DEF",250;"GHI",75},2,0),""))

Biff
 

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

Similar Threads

my first excel experience (share portfolio) 2
Query Help Needed 3
if condition 12
If / And / Or... 3
A function that verifies pair matches 4
Managing product info 1
Critical Counitif formula 3
Pivot Table - Summing 1

Top