#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 989
Default index match

I am looking for the value when Loan amount is $670,000 with 640 FICO
and LTV 76 and that should give me 3.000
LTV 0 70.01 75.01 80.01 85.01 90.01
Loan Size FICO
$650,000.01 620 659 1.000 2.000 3.000 N/A N/A N/A
$650,000.01 660 0.000 0.000 0.000 0.000 0.000 N/A
$1,000,000.01 740 4.000 5.000 N/A N/A N/A N/A
$1,000,000.01 680 739 6.000 7.000 N/A N/A N/A N/A
$1,500,000.01 680 8.000 N/A N/A N/A N/A N/A
that's what I have and it can't seem to work
=INDEX(D3:I7,MATCH(B11,D1:I1,1),MATCH(B10&B9,A3:A7 &B3:B7,1),1)
I tried too but nothing
=INDEX(D3:I7,MATCH(B11,D1:I1,0),MATCH(B10&B9,A3:A7 &B3:B7,0))
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default index match

=index(f3:f7,match(1,(a3:a7=670000)*(b3:b67=640),0 ))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Mark" wrote in message
...
I am looking for the value when Loan amount is $670,000 with 640 FICO
and LTV 76 and that should give me 3.000
LTV 0 70.01 75.01 80.01 85.01 90.01
Loan Size FICO
$650,000.01 620 659 1.000 2.000 3.000 N/A N/A N/A
$650,000.01 660 0.000 0.000 0.000 0.000 0.000 N/A
$1,000,000.01 740 4.000 5.000 N/A N/A N/A N/A
$1,000,000.01 680 739 6.000 7.000 N/A N/A N/A N/A
$1,500,000.01 680 8.000 N/A N/A N/A N/A N/A
that's what I have and it can't seem to work
=INDEX(D3:I7,MATCH(B11,D1:I1,1),MATCH(B10&B9,A3:A7 &B3:B7,1),1)
I tried too but nothing
=INDEX(D3:I7,MATCH(B11,D1:I1,0),MATCH(B10&B9,A3:A7 &B3:B7,0))



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default index match

I am trying to get the value of adj based on Loan Amount, Fico Score
and LTV%the value for loan amount, FICO score and LTV change

Bob Phillips wrote:
Don't understand that statement.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

wrote in message
oups.com...
the loan anount $670,000 with 640 FICO and LTV 76 change base on the
user entery
Is there away for it?
Bob Phillips wrote:
=index(f3:f7,match(1,(a3:a7=670000)*(b3:b67=640),0 ))

which is an array formula, it should be committed with Ctrl-Shift-Enter,

not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Mark" wrote in message
...
I am looking for the value when Loan amount is $670,000 with 640 FICO
and LTV 76 and that should give me 3.000
LTV 0 70.01 75.01 80.01 85.01 90.01
Loan Size FICO
$650,000.01 620 659 1.000 2.000 3.000 N/A N/A N/A
$650,000.01 660 0.000 0.000 0.000 0.000 0.000 N/A
$1,000,000.01 740 4.000 5.000 N/A N/A N/A N/A
$1,000,000.01 680 739 6.000 7.000 N/A N/A N/A N/A
$1,500,000.01 680 8.000 N/A N/A N/A N/A N/A
that's what I have and it can't seem to work
=INDEX(D3:I7,MATCH(B11,D1:I1,1),MATCH(B10&B9,A3:A7 &B3:B7,1),1)
I tried too but nothing
=INDEX(D3:I7,MATCH(B11,D1:I1,0),MATCH(B10&B9,A3:A7 &B3:B7,0))



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 751
Default index match

Bob,
essentially he wants to perform inexact match. Column A:A contains loan
amts. Col B:B contains the FICO (whatever it is). Row 1 contains the
LTV (whatever it is).

From what I can gather from the example, the OP wants to match loan amt

670,000 with 650,000; FICO of 640 with 650; and LTV of 76 with 75.01.

Seems very tricky and I don't know what he wants if, e.g., we have
principal 780,000, FICO of 800 and LTV of 88. At this moment I don't
know myself how to attack this and if it can be attacked with
formula-only solution.

Regards,
Kostis

Bob Phillips wrote:
Don't understand that statement.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

wrote in message
oups.com...
the loan anount $670,000 with 640 FICO and LTV 76 change base on the
user entery
Is there away for it?
Bob Phillips wrote:
=index(f3:f7,match(1,(a3:a7=670000)*(b3:b67=640),0 ))

which is an array formula, it should be committed with Ctrl-Shift-Enter,

not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Mark" wrote in message
...
I am looking for the value when Loan amount is $670,000 with 640 FICO
and LTV 76 and that should give me 3.000
LTV 0 70.01 75.01 80.01 85.01 90.01
Loan Size FICO
$650,000.01 620 659 1.000 2.000 3.000 N/A N/A N/A
$650,000.01 660 0.000 0.000 0.000 0.000 0.000 N/A
$1,000,000.01 740 4.000 5.000 N/A N/A N/A N/A
$1,000,000.01 680 739 6.000 7.000 N/A N/A N/A N/A
$1,500,000.01 680 8.000 N/A N/A N/A N/A N/A
that's what I have and it can't seem to work
=INDEX(D3:I7,MATCH(B11,D1:I1,1),MATCH(B10&B9,A3:A7 &B3:B7,1),1)
I tried too but nothing
=INDEX(D3:I7,MATCH(B11,D1:I1,0),MATCH(B10&B9,A3:A7 &B3:B7,0))



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default index match

Hi

I'm not sure that I understand what you want, but maybe
=INDEX(D2:I7,MIN(MATCH(B9,A3:A7,1),MATCH(B10,B3:B7 ,1))+1,MATCH(B11,D2:I2,1))

--
Regards

Roger Govier


wrote in message
oups.com...
I am trying to get the value of adj based on Loan Amount, Fico Score
and LTV%the value for loan amount, FICO score and LTV change

Bob Phillips wrote:
Don't understand that statement.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

wrote in message
oups.com...
the loan anount $670,000 with 640 FICO and LTV 76 change base on
the
user entery
Is there away for it?
Bob Phillips wrote:
=index(f3:f7,match(1,(a3:a7=670000)*(b3:b67=640),0 ))

which is an array formula, it should be committed with
Ctrl-Shift-Enter,

not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Mark" wrote in message
...
I am looking for the value when Loan amount is $670,000 with
640 FICO
and LTV 76 and that should give me 3.000
LTV 0 70.01 75.01 80.01 85.01 90.01
Loan Size FICO
$650,000.01 620 659 1.000 2.000 3.000 N/A N/A N/A
$650,000.01 660 0.000 0.000 0.000 0.000 0.000 N/A
$1,000,000.01 740 4.000 5.000 N/A N/A N/A N/A
$1,000,000.01 680 739 6.000 7.000 N/A N/A N/A N/A
$1,500,000.01 680 8.000 N/A N/A N/A N/A N/A
that's what I have and it can't seem to work
=INDEX(D3:I7,MATCH(B11,D1:I1,1),MATCH(B10&B9,A3:A7 &B3:B7,1),1)
I tried too but nothing
=INDEX(D3:I7,MATCH(B11,D1:I1,0),MATCH(B10&B9,A3:A7 &B3:B7,0))




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Index, Match and filters Steve M Excel Discussion (Misc queries) 4 August 22nd 06 09:12 PM
Match Index cjjoo Excel Worksheet Functions 3 October 25th 05 09:33 AM
Match or Index Question carl Excel Worksheet Functions 2 October 4th 05 09:11 PM
Match & Index Phyllis B. Excel Worksheet Functions 2 November 27th 04 03:26 PM
Vlookup, Index & Match Phyllis Excel Worksheet Functions 1 November 8th 04 06:11 PM


All times are GMT +1. The time now is 11:15 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"