Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default Need Formula Help Form Table

I'm trying to create and If/then statement from the following table:

I have a drop down list with the values on x
I have a drop down list with the values on y
I need to populate another field with the value that corresponds to the
combination of the two.

How do I do that?

Here's the data:

1 M 10 M 20 M 30 M
1.3 Mbps 877,500 8,775,000 17,550,000 26,330,000
1.7 Mbps 1,147,500 11,475,000 22,950,000 34,425,000
2.5 Mbps 1,687,500 16,875,000 33,750,000 50,625,000

Also

Help with the following (seperate) formula:

If (X) = 1.3 mbps then (A*.878), If = 1.7 Mbps then (a*1.147), if 2.5 mbps
then (a*1.687)
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Need Formula Help Form Table

Presumably x and y are two cells, returning one of the values in your
first column and one of the values in your first row. You will need
something like this:

=INDEX(B2:E4,MATCH(x,A2:A4,0),MATCH(y,B1:E1,0))

For your second query, try this:

=a*VLOOKUP(x,A2:B4,2,0)/1000000

Substitute your cell references for a, x and y.

Hope this helps.

Pete

On Nov 8, 10:28 pm, Siper1 wrote:
I'm trying to create and If/then statement from the following table:

I have a drop down list with the values on x
I have a drop down list with the values on y
I need to populate another field with the value that corresponds to the
combination of the two.

How do I do that?

Here's the data:

1 M 10 M 20 M 30 M
1.3 Mbps 877,500 8,775,000 17,550,000 26,330,000
1.7 Mbps 1,147,500 11,475,000 22,950,000 34,425,000
2.5 Mbps 1,687,500 16,875,000 33,750,000 50,625,000

Also

Help with the following (seperate) formula:

If (X) = 1.3 mbps then (A*.878), If = 1.7 Mbps then (a*1.147), if 2.5 mbps
then (a*1.687)



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 40
Default Need Formula Help Form Table

1. Where is the data which you want to populate?
2. Use this formula =If(X="1.3 mbps",A*.878,if(X="1.7
Mbps",a*1.147,a*1.687) This assumes that you have only three values.

AQIB RIZVI

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 118
Default Need Formula Help Form Table

Hi Siper
Do you mean something like this.
=IF(A1=1.3,B1*0.878,IF(A1=1.7,B1*1.147,B1*1.687))

I have replaced your (X) with cell references. This might put you on the
right track, as your request is not very clear.

HTH
Michael M

"Siper1" wrote:

I'm trying to create and If/then statement from the following table:

I have a drop down list with the values on x
I have a drop down list with the values on y
I need to populate another field with the value that corresponds to the
combination of the two.

How do I do that?

Here's the data:

1 M 10 M 20 M 30 M
1.3 Mbps 877,500 8,775,000 17,550,000 26,330,000
1.7 Mbps 1,147,500 11,475,000 22,950,000 34,425,000
2.5 Mbps 1,687,500 16,875,000 33,750,000 50,625,000

Also

Help with the following (seperate) formula:

If (X) = 1.3 mbps then (A*.878), If = 1.7 Mbps then (a*1.147), if 2.5 mbps
then (a*1.687)

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default Need Formula Help Form Table

I tried the formula bellow but couldn't get it to work properly:
=INDEX(B11:E13,MATCH(B18,0),MATCH(B17,0))

The range on the spreadsheet is B11:E13

1 M 10 M 20 M 30 M
1.3 877,500 8,775,000 17,550,000 26,330,000
1.7 1,147,500 11,475,000 22,950,000 34,425,000
2.5 1,687,500 16,875,000 33,750,000 50,625,000

Yes:
I have a drop down field in B18 (1.3, 1.7. 2.5)
I have a drop down field in B17 (1 M, 10 M, 20 M, 30 M)
I have a blank field that needs to be populated with the data (B19) -

Thanks for the help!

"Pete_UK" wrote:

Presumably x and y are two cells, returning one of the values in your
first column and one of the values in your first row. You will need
something like this:

=INDEX(B2:E4,MATCH(x,A2:A4,0),MATCH(y,B1:E1,0))

For your second query, try this:

=a*VLOOKUP(x,A2:B4,2,0)/1000000

Substitute your cell references for a, x and y.

Hope this helps.

Pete

On Nov 8, 10:28 pm, Siper1 wrote:
I'm trying to create and If/then statement from the following table:

I have a drop down list with the values on x
I have a drop down list with the values on y
I need to populate another field with the value that corresponds to the
combination of the two.

How do I do that?

Here's the data:

1 M 10 M 20 M 30 M
1.3 Mbps 877,500 8,775,000 17,550,000 26,330,000
1.7 Mbps 1,147,500 11,475,000 22,950,000 34,425,000
2.5 Mbps 1,687,500 16,875,000 33,750,000 50,625,000

Also

Help with the following (seperate) formula:

If (X) = 1.3 mbps then (A*.878), If = 1.7 Mbps then (a*1.147), if 2.5 mbps
then (a*1.687)






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Need Formula Help Form Table

This is the formula you need in B19:

=INDEX(B11:E13,MATCH(B18,A11:A13,0),MATCH(B17,B10: E10,0))

You missed the range references in the MATCH functions.

Hope this helps.

Pete

On Nov 8, 11:46 pm, Siper1 wrote:
I tried the formula bellow but couldn't get it to work properly:
=INDEX(B11:E13,MATCH(B18,0),MATCH(B17,0))

The range on the spreadsheet is B11:E13

1 M 10 M 20 M 30 M
1.3 877,500 8,775,000 17,550,000 26,330,000
1.7 1,147,500 11,475,000 22,950,000 34,425,000
2.5 1,687,500 16,875,000 33,750,000 50,625,000

Yes:
I have a drop down field in B18 (1.3, 1.7. 2.5)
I have a drop down field in B17 (1 M, 10 M, 20 M, 30 M)
I have a blank field that needs to be populated with the data (B19) -

Thanks for the help!



"Pete_UK" wrote:
Presumably x and y are two cells, returning one of the values in your
first column and one of the values in your first row. You will need
something like this:


=INDEX(B2:E4,MATCH(x,A2:A4,0),MATCH(y,B1:E1,0))


For your second query, try this:


=a*VLOOKUP(x,A2:B4,2,0)/1000000


Substitute your cell references for a, x and y.


Hope this helps.


Pete


On Nov 8, 10:28 pm, Siper1 wrote:
I'm trying to create and If/then statement from the following table:


I have a drop down list with the values on x
I have a drop down list with the values on y
I need to populate another field with the value that corresponds to the
combination of the two.


How do I do that?


Here's the data:


1 M 10 M 20 M 30 M
1.3 Mbps 877,500 8,775,000 17,550,000 26,330,000
1.7 Mbps 1,147,500 11,475,000 22,950,000 34,425,000
2.5 Mbps 1,687,500 16,875,000 33,750,000 50,625,000


Also


Help with the following (seperate) formula:


If (X) = 1.3 mbps then (A*.878), If = 1.7 Mbps then (a*1.147), if 2.5 mbps
then (a*1.687) - Hide quoted text -


- Show quoted text -



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
Set Pivot Table Tabular Form to Default [email protected] Excel Discussion (Misc queries) 0 July 16th 07 08:17 PM
PIVOT TABLE FROM A FORM IN ACCESS nazzoli Excel Discussion (Misc queries) 2 June 19th 06 10:34 PM
table or something. form? Template? Needs directcion Excel Discussion (Misc queries) 1 February 10th 06 02:43 AM
How do I save worksheet form data into a table in Excel 2003? Bob S. Excel Discussion (Misc queries) 0 December 31st 05 04:33 PM
Automate Export from Form Template to Seperate Table QuestDave Excel Discussion (Misc queries) 0 August 31st 05 05:25 PM


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