if statement with Vlookup

jgold20

Board Regular
Joined
Feb 4, 2018
Messages
135
I have an if statement and I want to add an additional if(Vlookup) to it. The first if statement is handling a specific rule. I want the if(lookup) to handle everything else. The fields for the 1st if statement are blank in 'Company Info'. Can this be done as I am getting an error?

=IF(OR(A3={"D","SR","V","X"}),
IF(AND(C3>1,C3<400),50,IF(AND(C3>399,C3<500),75,IF(AND(C3>499,C3<1001),100,IF(AND(C3>1000),150,0)))))+
if(VLOOKUP($A$3,'Company Info'!A1:j24,10,FALSE)*A9
 
Last edited:

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi,

Not entirely sure what you mean.

Cleaned up your IF statement and incorporated the VLOOKUP:

=IF(OR(A3={"D","SR","V","X"}),IF(AND(C3>1,C3<400),50,IF(C3<500,75,IF(C3<1001,100,150))),IFERROR(VLOOKUP($A$3,'Company Info'!A1:J24,10,FALSE)*A9,0))
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,580
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top