VLOOKUP with 2 conditions

dmfweb

New Member
Joined
Mar 14, 2014
Messages
29
Office Version
  1. 365
Is it possible to look at 2 different columns and if both are true THEN return a vlookup value?
What I "need" is IF the closed Resolved value is "No" AND VIP is TRUE then vlookup to show the description...
Now that I am typing this, I see a problem. :)
In the example there would be 2 it would return. Is there any way to display both (IN 2 cells)? I don't think there would be....
Any help would be appreciated if you have read this far.

If I have data like below:
Open​
Resolved​
VIP​
Description​
10-Jan​
Yes​
TRUE​
Desc 1​
11-Jan​
Yes​
TRUE​
Desc 2​
12-Jan​
No​
TRUE​
Desc 3​
11-Jan​
No​
FALSE​
Desc 4​
12-Jan​
No​
TRUE​
Desc 5​
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Is this is what you want?

Book1
ABCDE
1PenResolvedVIPDescription
210-JanYesTRUEDesc 1Desc 1
311-JanYesTRUEDesc 2Desc 2
412-JanYesTRUEDesc 3Desc 3
511-JanYesFALSEDesc 4 
612-JanYesFALSEDesc 5 
Sheet1
Cell Formulas
RangeFormula
E2:E6E2=IF(AND(C2=TRUE,B2="Yes"),D2,"")
 
Upvote 0
How about
Fluff.xlsm
ABCDEF
1OpenResolvedVIPDescription
210-JanYesTRUEDesc 1Desc 3
311-JanYesTRUEDesc 2Desc 5
412-JanNoTRUEDesc 3
511-JanNoFALSEDesc 4
612-JanNoTRUEDesc 5
7
Lists
Cell Formulas
RangeFormula
F2:F3F2=FILTER(D2:D100,(B2:B100="no")*(C2:C100))
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,573
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