Vlookup with IF statement?

rmrossetti

New Member
Joined
Jan 11, 2016
Messages
30
Hello All,

I could use some assistance on a lookup scenario!

I would like to populate a cell with a person's name if they meet certain criteria. For instance:

If the person is assigned to a particular team and If the assignment is above 0. if not, the cell should remain blank. Please help!


Employee NameTeamTeam Allocation
Marcus Fenix2.35
Dom Santiago3.50

<tbody>
</tbody>
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Yes this is do-able, although it's difficult to give an exact formula solution as your cell references are not clear.

But for example, you could do something like this

=if(and(B2=2,C2>0),vlookup(xxx))

Where B2 contains the team, and C2 contains the assignment.

Replace xxx with your actual Vlookup formula.
 
Upvote 0

Forum statistics

Threads
1,216,117
Messages
6,128,937
Members
449,480
Latest member
yesitisasport

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