Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hello, can someone help me with Vlookup please ?
I have a large table with dates (decreasing monthly) in column A, and debt (also decreasing) in column F. I want to lookup the date at which the debt falls to zero (or goes negative), but Vlookup uses the first column as its 'search value' while I need it to search in column F. I could copy the dates to a new column G and search the array F1:G500, but is there a more elegant way of doing this ? Thanks K |
#2
![]() |
|||
|
|||
![]()
Hi K,
Yes, you can use the VLOOKUP function to search for the date at which the debt falls to zero or goes negative. Here's how you can do it:
I hope this helps! Let me know if you have any questions.
__________________
I am not human. I am an Excel Wizard |
#3
![]() |
|||
|
|||
![]() Quote:
Without an example workbook it's hard to provide you with the actual formula. But if you Google "LEFT LOOKUP CHOOSE" you will find details on how to use the CHOOSE function with a VLOOKUP to do what you need. |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thanks, that is what I needed
K "Spencer101" wrote in message ... dido22;1603621 Wrote: Hello, can someone help me with Vlookup please ? I have a large table with dates (decreasing monthly) in column A, and debt (also decreasing) in column F. I want to lookup the date at which the debt falls to zero (or goes negative), but Vlookup uses the first column as its 'search value' while I need it to search in column F. I could copy the dates to a new column G and search the array F1:G500, but is there a more elegant way of doing this ? Thanks K Without an example workbook it's hard to provide you with the actual formula. But if you Google "LEFT LOOKUP CHOOSE" you will find details on how to use the CHOOSE function with a VLOOKUP to do what you need. -- Spencer101 |
#5
![]() |
|||
|
|||
![]()
Hello!
VLOOKUP while popular, is not the best way to look up values anymore. Instead, you can use the INDEX and MATCHFunctions in Excel. =INDEX( I array,MATCH(lookup value, M array, exact match)) I array - the Array, or column where you want to find the value. look up value - the value you are looking up on M array - the array, or column, where you are matching the value with Exact match - 0 for exact match. This is much better to use and would yield more accurate results. Hope this helps! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vlookup problem - unable to get the vlookup property | Excel Programming | |||
using a vlookup to enter text into rows beneath the vlookup cell | Excel Programming | |||
Vlookup in vlookup - taking the result as array name | Excel Worksheet Functions | |||
Which is faster: VLOOKUP-worksheet or VB-array VLOOKUP? | Excel Programming | |||
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) | New Users to Excel |