VLOOKUP Date Range and Return Value in Excel (4 Suitable Methods)

Get FREE Advanced Excel Exercises with Solutions!

Often you may need to VLOOKUP dealing with the date. If you want to return a certain value or values for the date range instead of VLOOKUP by date, you’re here in the right place. In this article, I’ll show 4 methods to VLOOKUP date range and return value in Excel with the necessary explanation. So that you can adjust the methods for your uses.


VLOOKUP Date Range and Return Value in Excel: 4 Methods

Let’s introduce today’s dataset where the name of the Items is provided along with Order Dates, Unit Price, Quantity and Sales. Here, I used some future dates which don’t hamper the analysis.

Dataset

Now, you’ll see the methods on how to VLOOKUP based on the date range (i.e. Order Dates) and then return the corresponding value. Right before that, I’d like to say that I’ll show you 2 methods using the VLOOKUP function (1st and 3rd methods). Besides, you’ll see the use of INDEX and MATCH functions in the second method. Lastly, the application of the LOOKUP function will be discussed.

Let’s dive into the methods.


1. VLOOKUP a Date within Date Range and Return Value

In the first method, you’ll explore the way of finding value if you specify a date within the date range. Let’s say, your lookup date within the date range (i.e. Order Dates) is in the D14 cell. Then, you want to return the value of the Sales of the corresponding cell (Lookup Order Date).

Truthfully, it’s a simple method. Just use the following formula in the D15 cell.

=VLOOKUP(D14,B5:F12,5,TRUE)

Here, D14 is the lookup order date, B5:F12 is the table array, 5 is the column index number (you may visit VLOOKUP Column Index Number if you have any confusion with this argument), and finally TRUE is for approximate matching.

Read More: How to Use Formula for Past Due Date in Excel


2. Find a Single Output Dealing with Two Dates

Besides, if you want to find a single value covering two dates within the date range in Excel, this method will be handy for you. For example, you have to find the output (Sales) having the Order Date greater than 6/3/2022 but less than 6/5/22.

Excel VLOOKUP Date Range and Return Value Find a Single Output Dealing with Two Dates

For finding the output, insert the following formula exactly in the C15 cell.

=INDEX(F5:F12,MATCH(1,IF(B5:B12>B15,IF(B5:B12<B16,1)),0))

Here, F5:F12 is the cell range for the Sales data, B5:B12 is the cell range for Order Dates, B15 is a date within the date range and B16 is another date within the date range.

In the above formula, the IF logical function returns 1 if the cell fulfills the criteria (greater than but less than). Next, the MATCH function provides the location of the matched values. Finally, the INDEX returns the value of the Sales that fulfills all criteria.

Excel VLOOKUP Date Range and Return Value Find a Single Output Dealing with Two Dates

After inserting the formula, if you press ENTER, you’ll get the following output.

Excel VLOOKUP Date Range and Return Value Find a Single Output Dealing with Two Dates

Note: If you want to use this method for a specific date within the date range, you can find that also. In that case, you have to insert the same date instead of the second date.


3. VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

More importantly, if you want to return multiple values rather than returning a single value that fulfills multiple criteria in the case of the date range, this method will provide you with outstanding performance.

Assuming that you want to apply the VLOOKUP function to return all values that fulfill the specific date range. As the process of executing the task is a little bit large, just follow the step-by-step guideline.

Step 01: Specifying the Start and End Dates

Initially, you have to specify the Start Date and End Date. In such a situation, using the Name Manager might be useful for updating the data frequently.

➤ Firstly, just type two dates in two different cells as shown in the following picture.

Using the Name Manager

Note: I opened a new working sheet for doing the task. However, it is not mandatory. You can accomplish the same task within the existing working sheet.

➤ Secondly, select the C5 cell which shows the Start Date, and choose the Name Manager from the Formulas tab.

Immediately, you’ll see a dialog box namely Name Manager and click on the New option.

Using the Name Manager

Next, input the name as Start_Date, and repeat the same process for the End Date.

Using the Name Manager

Step 02: Dealing with the Multiple Criteria of the Date Range

As you know we have to consider dates that fulfill the criteria. The criteria are that the Order Dates would be greater than or equal to Start Date and less than or equal to End Date.

➤ To deal with such criteria, just utilize the IF function.

=IF(AND(D5>=Start_Date,D5<=End_Date),"Yes","No")

Here, AND function returns dates that fulfill two criteria. Furthermore, if the criteria are fulfilled, the IF function returns Yes. Else, it will return No.

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

Step 03: Counting the Lookup Value

➤ The following combined formula utilizes the IF and COUNTIF functions to count the lookup value if the cell fulfills criteria (matches Yes). Else, it will return 0.

=IF(C5="Yes",COUNTIF($C$5:C5,"Yes"),0)

Here, C5 is the starting cell of the Lookup field.

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

Step 04: Returning Multiple Values

Initially, copy the name of all fields (not the values) in the previous step except the Fill Criteria.

Then enter the lookup value sequentially in the Lookup# field.

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

Next, go to the C15 cell and insert the following formula.

=VLOOKUP($B15,$B$4:$H$12,MATCH(C$14,$B$4:$H$4,0),FALSE)

Here, $B15 is the value of the Lookup# field, $B$4:$H$12 is the table array, C$14 is the lookup value, $B$4:$H$4 is the lookup array, 0 is for the exact matching.

In the above formula, the MATCH function finds the column index number actually for the VLOOKUP function. Finally, the VLOOKUP function returns a matched value of the Order Dates.

Note: You have to specify the dollar sign ($) carefully, otherwise you’ll not get your desired output.

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

➤ After pressing ENTER, you’ll get the output is 44715. Then, drag the plus sign to the adjacent columns until the Sales and the below cells until the lookup value is 5 (use the Fill Handle Tool).

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

➤ After dragging down and right, you’ll get the following output.

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

➤ If you look closely, you’ll find that Order Dates are in number format. Just press CTRL + 1 after selecting the cell range C15:C19 to open the Format Cells option.

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

➤ Then, choose your desired format.

Format Cells

➤ Finally, you’ll get all the values that fulfill the criteria of the date range.

Excel VLOOKUP Date Range with Multiple Criteria and Return Multiple Values

Read More: How to Use IF Formula for Date Range in Excel


4. VLOOKUP Two Date Ranges Using the LOOKUP Function

Last but not the least, you also may deal with two different date ranges. For example, I have added an individual column namely Delivery Date. Now, I want to find the specific item that meets two certain dates of the two date ranges. Luckily, you can accomplish the task using the LOOKUP function easily.

Using the LOOKUP Function

Just insert the following formula.

=LOOKUP(2,1/($B$5:$B$12<=C15)/($D$5:$D$12>=C16),$C$5:$C$12)

Here, $B$5:$B$12 is the cell range of the Order Dates, $D$5:$D$12 is the cell range for the Delivery Dates, C15 is an order date and C16 is delivery date. Finally, $C$5:$C$12 is the cell range for the Items.

Excel VLOOKUP Date Range and Return Value VLOOKUP Two Date Ranges Using the LOOKUP Function

After inserting the formula, you’ll get the following output.

Using the LOOKUP Function


Download Practice Workbook


Conclusion

This is how you may apply the VLOOKUP to return a value for the date range in Excel. I strongly believe this article will articulate your Excel journey. Anyway, if you have any queries or recommendations, please share them in the comments section.


Related Articles

What is ExcelDemy?

ExcelDemy Learn Excel & Excel Solutions Center provides free Excel tutorials, free support , and premium Excel consultancy services for Excel and business users. Feel free to contact us with your Excel projects.
Md. Abdul Kader
Md. Abdul Kader

Hi! I am Abdul Kader and presently working as ‘Excel & VBA Content Developer’ at Exceldemy. I publish my articles related to Microsoft Excel here. In 2019, I completed my graduation in Urban and Regional Planning from Chittagong University of Engineering and Technology. Having extreme eagerness to learn, I want to develop my skills and capabilities higher.

4 Comments
  1. Hello,

    Great article – I have a similar issue that I don’t think is quite captured here that I believe you may be able to help with. I work with logistics and often we have a trucker awarded a certain rate based on a destination. However, these rates have changed quite frequently over the past few months and I was wondering if it were possible to return a price for a given trucker/destination combo based on a given date.

    Example below:

    List of Orders
    5/31/22 Trucker A to Destination B – Price $250
    6/1/22 Trucker A to Destination B – Price $300
    6/5/22 Trucker A to Destination B – Price $400

    If I have a range of orders from 5/1/22-6/5/22, how can my formula return the latest price based on the dates of the orders? Therefore, an order from 6/2/2022 would return $300 based on Date/Trucker/Destination.

    Any help greatly appreciated!

  2. List of Orders
    5/31/22 Trucker A to Destination B Price $250
    6/01/22 Trucker A to Destination B Price $300
    6/05/22 Trucker A to Destination B Price $400
    First, sort your Order Date column by Newest to Oldest order. Then, use Trucker A to Destination B as the lookup value. Now, you’ll get the latest price by using the VLOOKUP function.

  3. Method #2 was the solution that I had been looking for for a couple of hours. Literally saved my butt. I had looked everywhere for that. Thanks so much Abdul.

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo