simple formula

bdgray

New Member
Joined
Feb 19, 2002
Messages
5
I'm trying to build a formula that would reassign list pricing for a product into 3 promotional rates. Can someone help me turn this into something excel can understand?

If cell c3 <$600 then d3 = $200
If $601<c3<$1000 then d3 = $350
If c3 > $1001 then d3 = $500

Thanks,
Brian
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
On 2002-02-25 13:38, bdgray wrote:
I'm trying to build a formula that would reassign list pricing for a product into 3 promotional rates. Can someone help me turn this into something excel can understand?

If cell c3 <$600 then d3 = $200
If $601<c3<$1000 then d3 = $350
If c3 > $1001 then d3 = $500

Thanks,
Brian

If cell c3 <$600 then d3 = $200
If $601<c3<$1000 then d3 = $350
If c3 > $1001 then d3 = $500

In D3 enter:

=(C3<=600)*200+(c3>600)*(C3<=1000)*350+(C3>1000)*500)

This one is without IFs.
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,576
Members
448,972
Latest member
Shantanu2024

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