Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Pulling data from multiple spreadsheet

4 tables: the top two tables are noted as Full, 1 is graded Platinum, the 2nd
Premier+, % runs across the top row and FICO numbers down left column, the
next two tables are noted as Stated, 1 is graded Platinum, the 2nd Premier+.
By entering 4 criteria Full or stated,grade(Platinum or premier+), % and
FICO, can I get the cross referenced Interest rate. ex: Full, Platinum,
680,70%=7.

Full 65% 70% 75% 80%
Platinum 680 7 7 7 7.1256
Platinum 660 7 7.125 7.125 7.25
Platinum 640 7.125 7.125 7.25 7.375
Platinum 620 7.375 7.5 7.5 7.625
Full 65% 70% 75% 80%
Premier+ 680 7.25 7.25 7.25 7.375
Premier+ 660 7.25 7.375 7.375 7.5
Premier+ 640 7.375 7.375 7.5 7.625
Premier+ 620 7.625 7.75 7.75 7.875


Stated 65% 70% 75% 80%
Platinum 680 7.75 8 8 8.125
Platinum 660 7.75 8.125 8.125 8.25
Platinum 640 7.875 8.125 8.25 8.375
Platinum 620 8.125 8.5 8.5 8.75
Stated 65% 70% 75% 80%
Premier+ 680 8 8.25 8.25 8.375
Premier+ 660 8 8.375 8.375 8.5
Premier+ 640 8.125 8.375 8.5 8.625
Premier+ 620 8.375 8.75 8.75 9

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Pulling data from multiple spreadsheet

One way which could deliver this ..

A sample construct is available at:
http://www.savefile.com/files/520405
Pull data from amongst multiple tables.xls

The 4 source tables are assumed in cols A to F in Sheet1

Create 4 named cells (via InsertNameDefine)
FullPlatinum =Sheet1!$A$1
FullPremier =Sheet1!$A$7
StatedPlatinum =Sheet1!$A$13
StatedPremier =Sheet1!$A$19
(the above are the top left intersection cells of the 4 source tables)

Assuming the source input "components" will be entered (or selected via DV
lists) in H2:K2, where H2 = Full or Stated, I2 = Platinum or Premier, J2 =
65%, 70%, etc, K2 = 680, 660, etc

Then in L2:
=OFFSET(INDIRECT(H2&I2),MATCH(J2,OFFSET(A:A,,1),0)-1,MATCH(K2,$1:$1,0)-1)
will return the required cross-referenced value from the correct table. Copy
L2 down as required to return correspondingly for other input sets in H3:K3,
H4:K4, etc.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Mark C" wrote:
4 tables: the top two tables are noted as Full, 1 is graded Platinum, the 2nd
Premier+, % runs across the top row and FICO numbers down left column, the
next two tables are noted as Stated, 1 is graded Platinum, the 2nd Premier+.
By entering 4 criteria Full or stated,grade(Platinum or premier+), % and
FICO, can I get the cross referenced Interest rate. ex: Full, Platinum,
680,70%=7.

Full 65% 70% 75% 80%
Platinum 680 7 7 7 7.1256
Platinum 660 7 7.125 7.125 7.25
Platinum 640 7.125 7.125 7.25 7.375
Platinum 620 7.375 7.5 7.5 7.625
Full 65% 70% 75% 80%
Premier+ 680 7.25 7.25 7.25 7.375
Premier+ 660 7.25 7.375 7.375 7.5
Premier+ 640 7.375 7.375 7.5 7.625
Premier+ 620 7.625 7.75 7.75 7.875


Stated 65% 70% 75% 80%
Platinum 680 7.75 8 8 8.125
Platinum 660 7.75 8.125 8.125 8.25
Platinum 640 7.875 8.125 8.25 8.375
Platinum 620 8.125 8.5 8.5 8.75
Stated 65% 70% 75% 80%
Premier+ 680 8 8.25 8.25 8.375
Premier+ 660 8 8.375 8.375 8.5
Premier+ 640 8.125 8.375 8.5 8.625
Premier+ 620 8.375 8.75 8.75 9

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Pulling data from multiple spreadsheet

The earlier suggestion in L2:
=OFFSET(INDIRECT(H2&I2),MATCH(J2,OFFSET(A:A,,1),0)-1,MATCH(K2,$1:$1,0)-1)


uses/relies on the identical structure of the 4 tables wrt the values of the
horiz & vertical axes, viz the 65% ... 80%, and the 680, ... 620 parts are
all the same for the 4 tables

Should there be the possibility that the values of the horiz & vert axes in
the 4 tables might be different from one table to the other, use this more
robust formula instead in L2:
=OFFSET(INDIRECT(H2&I2),MATCH(J2,OFFSET(INDIRECT(H 2&I2),,1,5),0)-1,MATCH(K2,OFFSET(INDIRECT(H2&I2),,,,6),0)-1)
Copy down as before
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
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
Pulling data from multiple rows and columns Mark C Excel Worksheet Functions 3 February 25th 07 08:33 AM
pulling data into a master sheet from multiple worksheets Jess Excel Worksheet Functions 3 February 3rd 07 08:11 AM
Multiple Sheets (Need to create 500 individual sheets in one workbook, pulling DATA Amaxwell Excel Worksheet Functions 4 August 17th 06 06:23 AM
Exported data pulling into another spreadsheet Bemidji Excel Discussion (Misc queries) 6 August 8th 06 03:58 PM
Please Help! - Need Help pulling data from one spreadsheet to anot dhwinters Excel Worksheet Functions 1 February 1st 06 09:20 PM


All times are GMT +1. The time now is 08:52 PM.

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"