Index and Match - with 2 criteria AND a date range...

tylerfutures

New Member
Joined
Nov 22, 2017
Messages
4
Hello,
I have a doozy here and any and all help is truly appreciated.

I am trying to create an Index and Match function that is looking for 2 criteria - a user ID and a date within a range. I have created this array that is looking for the user ID and the specific date:

=INDEX(Sheet2!$I:$I,MATCH(1,(Sheet2!$F:$F=D4)*(Sheet2!$D:$D=J4),0))

It works fine (the first part is looking for the user ID, D4, and the second is looking for the dates - J4 is the date, Sheet2!$D:$D has the dates it is looking through). What I am finding is the dates in Sheet2!:$D:$D may be a few days before or after. What I'd like to do is create something that allows J4 to either be 7 days before or after and return a value. I also need the first part of the function where it is matching user ID.

Any and all help is appreciated. Thank you!
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
You could do this:

=INDEX(Sheet2!$I:$I,MATCH(1,(Sheet2!$F:$F=D4)*(Sheet2!$D:$D>=J4-7)*(Sheet2!$D:$D < J4+8),0))<j4+8),0))< html=""></j4+8),0))<>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

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