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

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
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,834
Messages
6,121,874
Members
449,056
Latest member
ruhulaminappu

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