VLookup With Date Range & Additional Criteria

fsunole98

New Member
Joined
Aug 3, 2017
Messages
4
Hey Guys,

Desperately need some help here. I have a column where I need to

- lookup a date and see if it falls in-between two dates displayed on another sheet
- Make sure the dates it is looking up are for the correct advertiser

What I need it to return is either 'Active" or "Previous IO" if the date does not fall in the range.

So in the example below I need to look up if the date on column 2 for 7/1/17 is an Active or under previous IO based on the date ranges in sheet 2.

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
DatePlacementAdvertiserStatus
2017-08-01PERSAV_Q1Macys?

<colgroup><col style="width: 100px"><col width="100"><col width="100"><col width="168"></colgroup><tbody>
</tbody>


In Sheet two I have this:

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
AdvertiserStart DateEnd Date
Macys8/18/31

<colgroup><col style="width: 100px"><col width="100"><col width="100"></colgroup><tbody>
</tbody>


I tried the following formula (that has more data) but this does not incorporate the advertiser lookup in it:

==LOOKUP(2,1/('Sheet 2'!B2:B14<=A1)/('Sheet 2'!C2:C14>=A1),'Sheet2'!G2:G14)

Test - Google Sheets

Thank you!!
<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
This is what I came up with

Assuming your data begins with headers on both sheets at cell A1
Code:
Cell D2 <a2,vlookup(c2,sheet2!a:c,3,0)>=IF(AND(VLOOKUP(C2,Sheet2!A:C,2,0)[COLOR=#ff0000]"[/COLOR]<[COLOR=#ff0000]"[/COLOR]A2,VLOOKUP(C2,Sheet2!A:C,3,0)[COLOR=#ff0000]"[/COLOR]>[COLOR=#ff0000]"[/COLOR]A2),"Active","Previous IO")

Remove the red quotations as the forum thinks it is HTML tags so they keep dissapearing</a2,vlookup(c2,sheet2!a:c,3,0)>
 
Last edited:
Upvote 0
This is very helpful!

in my real example i am getting the '#n/a" error saying that it "did not find value '24917' in vlookup evaluation". I think the issue is that the formula is not looking up the actual date but the number you get for 2017-07-01 (which is what the vlookup is comparing to).

How can I fix this? the B2 value is what is not being read correctly.
 
Upvote 0
Could you tell me the exact placements of your data like the top left cell where each of your data begins for each sheet

I tried with your date formatting and it still worked fine...

if you tell me your coordinates i can formulate it for you to just copy paste
 
Upvote 0
IF(AND(VLOOKUP(G2,'Campaign Dates'!A1:B14,2,0)<B2,VLOOKUP(B2,'Campaign Dates'!A1:C14,3,0)>B2),"Previous IO","Active")

g2 = advertiser name
b2 = date for lookup (2017-07-01)
campaign dates = sheet 2 (same setup but just more data)



 
Upvote 0
Ahh i see your issue

So we need to continue to look for the advertiser in both vlookups

so instead of B2 in the vlookup it needs to remain G2

IF(AND(VLOOKUP(G2,'Campaign Dates'!A1:B14,2,0)<B2,VLOOKUP(G2,'Campaign Dates'!A1:C14,3,0)>B2),"Previous IO","Active")
 
Upvote 0

Forum statistics

Threads
1,216,100
Messages
6,128,825
Members
449,470
Latest member
Subhash Chand

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