Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default Values?? Please Read Below.

This is my dilema and I cannot find any answers anywhere.

I want to create a spreadsheet where the following values...

Width DIA Pitch
1 5 0.1
2 4 0.2
3 3 0.3
4 2 0.4
5 1 0.5

For each and every single scenario possible there is a different price (i
haven't listed them) how would I create a spreadsheet where i have three drop
down boxes (i know how to do these) and when i select a value from the drop
down box it displays a price that conforms with that scenario? So say Width
=1 DIA=5 PITCH=0.1 = SAY $1 then i change it too Width = 2 DIA=5 Pitch= 0.1
this then = $2 so on and so forth, is this actually possible and is it a BIG
process or is there a really easy way!!

I probably haven't explained this well at all and I do apologise.


Thanks


  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default Values?? Please Read Below.

If there's a linear relationship between the 3 specs and the price then you
might be able to do this without creating a table. Otherwise, you'll have to
create a table that lists all the possible combinations along with the
prices.

......W.....D.....Pit.....Price
.......1......1.....0.1......10
.......1......1.....0.2......12
.......1......1.....0.3......15
.......1......2.....0.1......11
.......1......2.....0.2......17
.......1......2.....0.3......22
etc
etc

Find the price for:

W = 1, D = 2, Pit = 0.2

With the above table in the range A2:D7 (A1:D1= column headers).

Criteria:

A10 = 1 (W)
B10 = 2 (D)
C10 = 0.2 (Pit)

=SUMPRODUCT(--(A2:A7=A10),--(B2:B7=B10),--(C2:C7=C10),D2:D7)

Result = 17

--
Biff
Microsoft Excel MVP


"CHR1S" wrote in message
...
This is my dilema and I cannot find any answers anywhere.

I want to create a spreadsheet where the following values...

Width DIA Pitch
1 5 0.1
2 4 0.2
3 3 0.3
4 2 0.4
5 1 0.5

For each and every single scenario possible there is a different price (i
haven't listed them) how would I create a spreadsheet where i have three
drop
down boxes (i know how to do these) and when i select a value from the
drop
down box it displays a price that conforms with that scenario? So say
Width
=1 DIA=5 PITCH=0.1 = SAY $1 then i change it too Width = 2 DIA=5 Pitch=
0.1
this then = $2 so on and so forth, is this actually possible and is it a
BIG
process or is there a really easy way!!

I probably haven't explained this well at all and I do apologise.


Thanks




  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3,572
Default Values?? Please Read Below.

Say you create your data list in Columns W, X, Y, and Z.
W = Width
X = Dia
Y = Pitch
Z = Price

Say from W2 to Z100.

Say your dropdowns are Columns A2, B2, and C2.

Enter this formula in D2:

=Sumproduct((W2:W100=A2)*(X2:X100=B2)*(Y2:Y100=C2) *Z2:Z100)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"CHR1S" wrote in message
...
This is my dilema and I cannot find any answers anywhere.

I want to create a spreadsheet where the following values...

Width DIA Pitch
1 5 0.1
2 4 0.2
3 3 0.3
4 2 0.4
5 1 0.5

For each and every single scenario possible there is a different price (i
haven't listed them) how would I create a spreadsheet where i have three
drop
down boxes (i know how to do these) and when i select a value from the
drop
down box it displays a price that conforms with that scenario? So say
Width
=1 DIA=5 PITCH=0.1 = SAY $1 then i change it too Width = 2 DIA=5 Pitch=
0.1
this then = $2 so on and so forth, is this actually possible and is it a
BIG
process or is there a really easy way!!

I probably haven't explained this well at all and I do apologise.


Thanks




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
Read Excel row values shantanu Excel Worksheet Functions 4 November 28th 07 08:03 AM
read the values from a excel row shantanu Excel Worksheet Functions 2 July 13th 07 09:22 AM
Read series values range of a chart matelot Charts and Charting in Excel 2 May 15th 07 03:45 AM
how do i read off values from a chart created in excel? rachel Excel Discussion (Misc queries) 0 December 11th 05 05:31 PM
How do I read values from a line chart? Lynn Charts and Charting in Excel 3 October 9th 05 09:11 PM


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