Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Indirect & Match Formula Problem

I'm trying to use an array formula that matches Lookupb to the record in
column a based on match to LookupA. The formula I use is as follows:
=INDEX($A$2:$B$26,MATCH(C2,B$2:B$26,0),1)
This works but once I try to make it an array it only shows the figure for
the first record match on Lookup B. I need to use an array due to
performance issues. This works too slow if I just use the formula above
without as a copy and paste. Any suggestions on how to convert to an array
and still get desired results.

Below is sample table

ShowUpRate LookupA LookupB ShowUpRate
50% 12.00 1.00 17%
33% 14.00 2.00 17%
38% 17.00 3.00 17%
17% 23.00 4.00 17%
40% 16.00 5.00 17%
50% 18.00 6.00 17%
33% 22.00 7.00 17%
0% 24.00 8.00 17%
50% 26.00 9.00 17%
0% 25.00 10.00 17%
60% 19.00 11.00 17%
33% 21.00 12.00 17%
33% 8.00 13.00 17%
50% 7.00 14.00 17%
25% 15.00 15.00 17%
0% 13.00 16.00 17%
0% 20.00 17.00 17%
43% 11.00 18.00 17%
40% 10.00 19.00 17%
43% 9.00 20.00 17%
33% 6.00 21.00 17%
17% 1.00 22.00 17%
78% 4.00 23.00 17%
57% 5.00 24.00 17%
46% 3.00 25.00 17%


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 161
Default Indirect & Match Formula Problem

=INDEX(A2:B26,MATCH(C2:C26,B2:B26,0),1)

should be ur formula, which u should insert to d2:d26 for instance.
Highlight the block, insert the formula end press ctrl+shift+enter.
Believe I undertood what u tried to get.

"jkim" wrote:

I'm trying to use an array formula that matches Lookupb to the record in
column a based on match to LookupA. The formula I use is as follows:
=INDEX($A$2:$B$26,MATCH(C2,B$2:B$26,0),1)
This works but once I try to make it an array it only shows the figure for
the first record match on Lookup B. I need to use an array due to
performance issues. This works too slow if I just use the formula above
without as a copy and paste. Any suggestions on how to convert to an array
and still get desired results.

Below is sample table

ShowUpRate LookupA LookupB ShowUpRate
50% 12.00 1.00 17%
33% 14.00 2.00 17%
38% 17.00 3.00 17%
17% 23.00 4.00 17%
40% 16.00 5.00 17%
50% 18.00 6.00 17%
33% 22.00 7.00 17%
0% 24.00 8.00 17%
50% 26.00 9.00 17%
0% 25.00 10.00 17%
60% 19.00 11.00 17%
33% 21.00 12.00 17%
33% 8.00 13.00 17%
50% 7.00 14.00 17%
25% 15.00 15.00 17%
0% 13.00 16.00 17%
0% 20.00 17.00 17%
43% 11.00 18.00 17%
40% 10.00 19.00 17%
43% 9.00 20.00 17%
33% 6.00 21.00 17%
17% 1.00 22.00 17%
78% 4.00 23.00 17%
57% 5.00 24.00 17%
46% 3.00 25.00 17%


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Indirect & Match Formula Problem

Thanks looks like it will work

"Alojz" wrote:

=INDEX(A2:B26,MATCH(C2:C26,B2:B26,0),1)

should be ur formula, which u should insert to d2:d26 for instance.
Highlight the block, insert the formula end press ctrl+shift+enter.
Believe I undertood what u tried to get.

"jkim" wrote:

I'm trying to use an array formula that matches Lookupb to the record in
column a based on match to LookupA. The formula I use is as follows:
=INDEX($A$2:$B$26,MATCH(C2,B$2:B$26,0),1)
This works but once I try to make it an array it only shows the figure for
the first record match on Lookup B. I need to use an array due to
performance issues. This works too slow if I just use the formula above
without as a copy and paste. Any suggestions on how to convert to an array
and still get desired results.

Below is sample table

ShowUpRate LookupA LookupB ShowUpRate
50% 12.00 1.00 17%
33% 14.00 2.00 17%
38% 17.00 3.00 17%
17% 23.00 4.00 17%
40% 16.00 5.00 17%
50% 18.00 6.00 17%
33% 22.00 7.00 17%
0% 24.00 8.00 17%
50% 26.00 9.00 17%
0% 25.00 10.00 17%
60% 19.00 11.00 17%
33% 21.00 12.00 17%
33% 8.00 13.00 17%
50% 7.00 14.00 17%
25% 15.00 15.00 17%
0% 13.00 16.00 17%
0% 20.00 17.00 17%
43% 11.00 18.00 17%
40% 10.00 19.00 17%
43% 9.00 20.00 17%
33% 6.00 21.00 17%
17% 1.00 22.00 17%
78% 4.00 23.00 17%
57% 5.00 24.00 17%
46% 3.00 25.00 17%


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 161
Default Indirect & Match Formula Problem

glad helping, cheers

"jkim" wrote:

Thanks looks like it will work

"Alojz" wrote:

=INDEX(A2:B26,MATCH(C2:C26,B2:B26,0),1)

should be ur formula, which u should insert to d2:d26 for instance.
Highlight the block, insert the formula end press ctrl+shift+enter.
Believe I undertood what u tried to get.

"jkim" wrote:

I'm trying to use an array formula that matches Lookupb to the record in
column a based on match to LookupA. The formula I use is as follows:
=INDEX($A$2:$B$26,MATCH(C2,B$2:B$26,0),1)
This works but once I try to make it an array it only shows the figure for
the first record match on Lookup B. I need to use an array due to
performance issues. This works too slow if I just use the formula above
without as a copy and paste. Any suggestions on how to convert to an array
and still get desired results.

Below is sample table

ShowUpRate LookupA LookupB ShowUpRate
50% 12.00 1.00 17%
33% 14.00 2.00 17%
38% 17.00 3.00 17%
17% 23.00 4.00 17%
40% 16.00 5.00 17%
50% 18.00 6.00 17%
33% 22.00 7.00 17%
0% 24.00 8.00 17%
50% 26.00 9.00 17%
0% 25.00 10.00 17%
60% 19.00 11.00 17%
33% 21.00 12.00 17%
33% 8.00 13.00 17%
50% 7.00 14.00 17%
25% 15.00 15.00 17%
0% 13.00 16.00 17%
0% 20.00 17.00 17%
43% 11.00 18.00 17%
40% 10.00 19.00 17%
43% 9.00 20.00 17%
33% 6.00 21.00 17%
17% 1.00 22.00 17%
78% 4.00 23.00 17%
57% 5.00 24.00 17%
46% 3.00 25.00 17%


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
PROBLEM WITH INDIRECT & VLOOKUP FORMULA Tanya Excel Worksheet Functions 11 October 11th 07 02:17 PM
SUMIF and SUMPRODUCT with INDIRECT formula problem Sunnyskies Excel Discussion (Misc queries) 1 August 18th 07 11:17 AM
Indirect Formula Problem sid@knee Excel Worksheet Functions 3 January 30th 07 12:58 AM
Index,Indirect, and Match caldog Excel Worksheet Functions 3 November 10th 06 11:57 PM
Formula Problem which includes Sum,If,Frequency,match and row BigH Excel Discussion (Misc queries) 2 February 12th 06 04:44 PM


All times are GMT +1. The time now is 12:38 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"