Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default INDEX function multiple columns & rows

I am trying to put together a formula that will take the column value from
one cell and the row value from another cell and go to this table and enter
the number that corresponds with where the two values meet. Keep getting
#VALUE! error when I use the index function
5 10 15 20 25
6% 72 181 341 572 902
8% 75 198 393 699 1168
10% 78 216 455 859 1531


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default INDEX function multiple columns & rows

Hi!

One way:

A10 = 8%
A11 = 10

=VLOOKUP(A10,A2:F4,MATCH(A11,A1:F1,0),0)

Returns 198

Biff

"jasebeds" wrote in message
...
I am trying to put together a formula that will take the column value from
one cell and the row value from another cell and go to this table and
enter
the number that corresponds with where the two values meet. Keep getting
#VALUE! error when I use the index function
5 10 15 20 25
6% 72 181 341 572 902
8% 75 198 393 699 1168
10% 78 216 455 859 1531




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,339
Default INDEX function multiple columns & rows

Using Biff's input cells:

=INDEX($B$2:$F$4,MATCH(A10,$A$2:$A$4,0),MATCH(A11, $B$1:$F$1,0))

OR

=SUMPRODUCT(($B$1:$F$1=A11)*($A$2:$A$4=A10)*($B$2: $F$4))

"Biff" wrote:

Hi!

One way:

A10 = 8%
A11 = 10

=VLOOKUP(A10,A2:F4,MATCH(A11,A1:F1,0),0)

Returns 198

Biff

"jasebeds" wrote in message
...
I am trying to put together a formula that will take the column value from
one cell and the row value from another cell and go to this table and
enter
the number that corresponds with where the two values meet. Keep getting
#VALUE! error when I use the index function
5 10 15 20 25
6% 72 181 341 572 902
8% 75 198 393 699 1168
10% 78 216 455 859 1531





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
filtering unique in multiple columns umniy Excel Worksheet Functions 4 March 9th 06 01:06 PM
Rows & Columns in Excel seadragon69 Excel Worksheet Functions 2 December 7th 05 05:54 PM
Index Match function for multiple linked variables Bob Excel Worksheet Functions 13 November 23rd 05 12:56 AM
Index Match function for multiple linked variables Bob Excel Worksheet Functions 0 November 22nd 05 02:12 AM
How to Count Rows with defined values in multiple columns ryesworld Excel Worksheet Functions 9 November 8th 05 06:32 PM


All times are GMT +1. The time now is 09:42 AM.

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

About Us

"It's about Microsoft Excel"