Kind of a VLOOKUP but different

sb003848

Board Regular
Joined
Sep 17, 2009
Messages
66
Hello all,

I'm using Excel to calculate my budget.

In row "E", I have my balance after each transaction.

In row "A", I have the date of that transaction.

In cell "E2", I added this formula: =SMALL(E6:E3000,1)

In cell "H2", I added this formula:
=VALUE(E2)

What formula would I need to add in cell "K2" in order to search in column "E" for the value found in "H2" and then show me the date in column "A"?

It's kind of a VLOOKUP but instead of finding a value and giving the information from a cell to it's right, I wish to give the info of a cell to the left of the value (4 cells to the left).

I would like to thank anyone that can help in advance...
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Try the following:

Code:
=INDEX(A6:A3000,MATCH(H2,E6:E3000,0))

However, your use of =VALUE makes me wonder how your data is formatted if that would work.
 
Last edited:
Upvote 0
Try
Code:
=INDEX(A6:$A$3000,MATCH(H2,E6:$E$3000,1),1)
 
Upvote 0

Forum statistics

Threads
1,214,958
Messages
6,122,475
Members
449,087
Latest member
RExcelSearch

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