Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
crimsonkng
 
Posts: n/a
Default how to calculate a value for 49 possible combinations

Though my problem is a bit more complicated than this, I think that if I
solve this, I can apply the rule to my real problem.

In A1, I've defined a data-validation (list/range) of which the values can
be SUN, MON, TUE, WED, THU, FRI, and SAT. (arrival day)
In B1, I've defined a data-validation (list/range) of which the values can
be SUN, MON, TUE, WED, THU, FRI, and SAT. (departure day)

I need to determine a total dollar-amount depending upon the arrival day and
the departure day (i.e., how long the technician is on-site). I suppose that
I could "hard-code" the values for 49 different combinations. But is there a
formula that can determine the value by looking at the "intersection" of a 7
x 7 table (A1:H8)? I can populate the values relatively easily. But can a
formula (in cell C1, for example) "look" at the corresponding intersection of
a column and row (e.g, arriving MON and departing FRI) and get the value
from that intersected cell? I don't want to do this in a macro. I want to
do it in a formula.

Thanks for any suggestions.
  #2   Report Post  
dlw
 
Posts: n/a
Default

use vlookup to assign numbers to days SUN=1 MON=2, etc then use ABS(arrival
day - departure day) +1
  #3   Report Post  
abcd
 
Posts: n/a
Default

Sure it's possible
to find a cell's value inside a table
Look the help of INDEX function

and also MATCH

so now, if you make a table, with day-names for labels (rows and
collumns) you may use MATCH (twice) to know the position of a known day
inside a serie, (twice: one for each date) and then choose the
intersection in the table by a
INDEX (table; row position;column position)
function
  #4   Report Post  
RagDyer
 
Posts: n/a
Default

Say your data list was on Sheet2, from A1:H8.
Sheet1 - A1 = drop down list
Sheet1 - B1 = second drop down list
Sheet1 - C1 = this formula:

=INDEX(Sheet2!A1:H8,MATCH(A1,Sheet2!A1:A8,0),MATCH (B1,Sheet2!A1:H1,0))
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"crimsonkng" wrote in message
...
Though my problem is a bit more complicated than this, I think that if I
solve this, I can apply the rule to my real problem.

In A1, I've defined a data-validation (list/range) of which the values can
be SUN, MON, TUE, WED, THU, FRI, and SAT. (arrival day)
In B1, I've defined a data-validation (list/range) of which the values can
be SUN, MON, TUE, WED, THU, FRI, and SAT. (departure day)

I need to determine a total dollar-amount depending upon the arrival day

and
the departure day (i.e., how long the technician is on-site). I suppose

that
I could "hard-code" the values for 49 different combinations. But is

there a
formula that can determine the value by looking at the "intersection" of a

7
x 7 table (A1:H8)? I can populate the values relatively easily. But can

a
formula (in cell C1, for example) "look" at the corresponding intersection

of
a column and row (e.g, arriving MON and departing FRI) and get the value
from that intersected cell? I don't want to do this in a macro. I want

to
do it in a formula.

Thanks for any suggestions.



  #5   Report Post  
crimsonkng
 
Posts: n/a
Default

you all are great. thanks so much.
Dan

"crimsonkng" wrote:

Though my problem is a bit more complicated than this, I think that if I
solve this, I can apply the rule to my real problem.

In A1, I've defined a data-validation (list/range) of which the values can
be SUN, MON, TUE, WED, THU, FRI, and SAT. (arrival day)
In B1, I've defined a data-validation (list/range) of which the values can
be SUN, MON, TUE, WED, THU, FRI, and SAT. (departure day)

I need to determine a total dollar-amount depending upon the arrival day and
the departure day (i.e., how long the technician is on-site). I suppose that
I could "hard-code" the values for 49 different combinations. But is there a
formula that can determine the value by looking at the "intersection" of a 7
x 7 table (A1:H8)? I can populate the values relatively easily. But can a
formula (in cell C1, for example) "look" at the corresponding intersection of
a column and row (e.g, arriving MON and departing FRI) and get the value
from that intersected cell? I don't want to do this in a macro. I want to
do it in a formula.

Thanks for any suggestions.



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
help with sumif to calculate column rvnwdr Excel Discussion (Misc queries) 3 June 30th 05 12:38 AM
How can I calculate Vacation Time earned based on length of emplo. Kim Excel Discussion (Misc queries) 2 March 15th 05 08:04 PM
formula to calculate # of days between dates, excluding holidays abs2299 Excel Discussion (Misc queries) 8 March 3rd 05 02:21 AM
Not able to calculate. mark_kramarczyk Excel Worksheet Functions 1 December 29th 04 08:55 PM
How do you calculate the nth root of a number in Excel 2003? William Excel Worksheet Functions 2 November 17th 04 04:19 PM


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