#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
perplexed
 
Posts: n/a
Default Evaluation Sheet

Large spreadsheet with supplier quoted prices in columns F-Z (could increase)
with supplier names as headers in row one. About 300 rows of data entered.
Am using the following in column AA to capture the low bid while skipping
the blanks: {=MIN(IF(F2:Z20,F2:Z2))}
Am using the following in column AB to attempt to list the name of the low
bidder, drawing the name from row one header:
=INDEX($F$1:$Z$1,1,MATCH(AA2,F2:Z2))

Problem is that it returns a text answer, but not always the correct one.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bpeltzer
 
Posts: n/a
Default Evaluation Sheet

MATCH takes an optional third argument indicating whether it requires an
exact match or a range match. The default, which you've gotten by omitting
that argument, is a range match. Give the following a shot:
=INDEX($F$1:$F$1,1,MATCH(AA2,F2:F2,FALSE))

"perplexed" wrote:

Large spreadsheet with supplier quoted prices in columns F-Z (could increase)
with supplier names as headers in row one. About 300 rows of data entered.
Am using the following in column AA to capture the low bid while skipping
the blanks: {=MIN(IF(F2:Z20,F2:Z2))}
Am using the following in column AB to attempt to list the name of the low
bidder, drawing the name from row one header:
=INDEX($F$1:$Z$1,1,MATCH(AA2,F2:Z2))

Problem is that it returns a text answer, but not always the correct one.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
perplexed
 
Posts: n/a
Default Evaluation Sheet

that worked beautifully when I opened up the array range to the right hand
limit of column Z. I will go back now and read the help on match to
understand WHY it works. Thanks.

"bpeltzer" wrote:

MATCH takes an optional third argument indicating whether it requires an
exact match or a range match. The default, which you've gotten by omitting
that argument, is a range match. Give the following a shot:
=INDEX($F$1:$F$1,1,MATCH(AA2,F2:F2,FALSE))

"perplexed" wrote:

Large spreadsheet with supplier quoted prices in columns F-Z (could increase)
with supplier names as headers in row one. About 300 rows of data entered.
Am using the following in column AA to capture the low bid while skipping
the blanks: {=MIN(IF(F2:Z20,F2:Z2))}
Am using the following in column AB to attempt to list the name of the low
bidder, drawing the name from row one header:
=INDEX($F$1:$Z$1,1,MATCH(AA2,F2:Z2))

Problem is that it returns a text answer, but not always the correct one.

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
How do I link cells, sheet to sheet, to recognize row deletions? LeeC Excel Discussion (Misc queries) 30 November 6th 09 10:26 PM
lock tab in sheet 2 until cell in sheet one is completed john tempest Excel Worksheet Functions 7 November 24th 05 08:45 AM
In Excel, how do you make one whole sheet equal to another. ryan Excel Discussion (Misc queries) 2 August 31st 05 07:03 PM
Clicking Cell Link Changes Cell on Another Sheet nshah Excel Discussion (Misc queries) 1 August 31st 05 01:50 AM
Using a relative SHEET reference for source data in a chart James Charts and Charting in Excel 6 August 16th 05 05:07 PM


All times are GMT +1. The time now is 06:21 PM.

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"