How to split a value based on diff criteria?

sinfulloyolite

Board Regular
Joined
May 8, 2008
Messages
79
Hello,

I need a formula which could split a value into 4 based on following criteria:

If I enter a value as 600 in A2:

I want tht to be split into 0-150 (B2); 151-300 (C2); 301-500 (D2); 501 & above in (C2)

It nothing but the cells show display as A2 = 600 ; B2 = 150; C2 = 150; D2=200 & D2 = 100 ...

Total of B2, C2, D2 = 600.

Could anyone Sort this out?

Thanks,
Prem
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Hi Prem

Try:

B2: =MIN(A2,150)
C2: =MIN(MAX(A2-150,0),150)
D2: =MIN(MAX(A2-300,0),200)
E2: =MAX(A2-500,0)
 
Upvote 0

Forum statistics

Threads
1,203,201
Messages
6,054,088
Members
444,702
Latest member
patrickmg17

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