Help With Multiple If/And Statements

slparadise

New Member
Joined
Jan 30, 2015
Messages
16
TABLE 1
Widget--Length of Widget----SF of Widget--$$COST$$

<tbody>
</tbody>

TABLE 2
--Length of Widget--$$COST$$
0-5 Feet$10
6-10 Feet$15

<tbody>
</tbody>


I need to create a formula that will calculate the cost in TABLE 1 assuming a minimum for the --SF of Widget-- cell. I also need that formula to calculate based on the amounts in TABLE 2. I have created a drop down box in TABLE 1 for --Length of Widget-- that corresponds to TABLE 2. I am struggling with the minimum component. I need the formula to use 500 as a multiplier if the --SF of Widget-- is LESS THAN 500 and to use the number input in the --SF of Widget-- cell if that number is GREATER THAN 500.

Essentially if the --Length of Widget-- is 0-5 feet and the --SF of Widget-- is 300; the equation would be $10 * 500 ($10=0-5 Feet; 500=--SF of Widget--Minimum). If the the --Length of Widget-- is 0-5 feet and the --SF of Widget-- is 600; the equation would be $10 * 600 ($10=0-5 Feet; 500=--SF of Widget--Minimum).

Thanks for any and all help. I really do appreciate it.
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Try:

ABCDEFGH
1WidgetLengthSF of WidgetCost $Length
2A43005000FromTo Cost
3B3600600005 $ 10.00
4C56006000610 $ 15.00
5D845075001115 $ 20.00
6E775011250

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet3

Worksheet Formulas
CellFormula
D2=VLOOKUP(B2,$F$3:$H$5,3)*MAX(500,C2)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,937
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top