Multiple IF with Single Look Up and AND function

sg2209

Board Regular
Joined
Oct 27, 2017
Messages
117
Office Version
  1. 2016
hi Friends,

i am trying creating a formula where IF and AND functions matched then vlook up however not getting the desired results .

I want IF Cell A4="First",And (B4="Track 1", then look up value populate the scores unfortunately when i am running the formula

it says A4= First and B4 = Track 1 however against ROBIN i am not getting the scores for Robin.

Attached is the Dummy Data, Can you please review and help me
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
There is nothing attached. Here is the general idea.

=IF(AND(A4="First,B4="Track 1"),VLOOKUP(A1,B1:C99,2,FALSE),"false case")
 
Upvote 0
Thank you the response though i had tried this , not getting the expecting result, when i drag down the formula , its not throwing the results
 
Upvote 0
Where is the dummy data ??
AND
you may have to make the VLOOKUP table range absolute
VBA Code:
=IF(AND(A4="First,B4="Track 1"),VLOOKUP(A1,$B$1:$C$99,2,FALSE),"false case")
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

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