Formula

Joey172

New Member
Joined
Feb 29, 2004
Messages
3
I am trying to set up a formula for a column of cells but I don't know how
Here are the criteria
If the rate is 0.003515 and weight multiplied by rate < 11.50, then the charge is 11.50
If false, the rate is weight multiplied by rate

I can get that part but there are more criteria
If rate IS NOT 0.003515 and weight multiplied by rate < 15.00, then teh charge is 15.00
If false, the rate is weight multiplied by rate

I hope this isn't too confusing...Can anyone tell me how to set up such a formula? Thanks.

Excel User
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Joey172 said:
I am trying to set up a formula for a column of cells but I don't know how
Here are the criteria
If the rate is 0.003515 and weight multiplied by rate < 11.50, then the charge is 11.50
If false, the rate is weight multiplied by rate

I can get that part but there are more criteria
If rate IS NOT 0.003515 and weight multiplied by rate < 15.00, then teh charge is 15.00
If false, the rate is weight multiplied by rate

I hope this isn't too confusing...Can anyone tell me how to set up such a formula? Thanks.

Excel User

How many more criterias?
 
Upvote 0
=IF(AND(Rate=0.003515,Rate*Weight<11.5),11.5,IF(AND(Rate<>0.003515,Rate*Weight<15),15,Rate*Weight))
 
Upvote 0
Assume cell A1 contains the rate, and column B contains the weight.

In cell C1:
=IF(AND($A$1=0.003515,$A$1*$B1<11.5),11.5,IF(AND($A$1<>0.003515,$A$1*$B1<15),15,$A$1*$B1))

Then copy down.
 
Upvote 0
Try this although untested. May get you on the right track nonetheless

if(and(rate=0.003515,weight*rate<11.50),11.50,if(and(rate<>0.003515,weight*rate<15),15,weight*rate))
 
Upvote 0

Forum statistics

Threads
1,214,893
Messages
6,122,121
Members
449,066
Latest member
Andyg666

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