Break a number down to smaller bands

Chryso

New Member
Joined
May 15, 2008
Messages
10
Hi to all!
Two days now I am trying to solve this puzzle so any suggestions/ideas you may have would be greatly appreciated!!
Here is the issue:
:confused:
I have a series of different numbers that I need to break down into smaller ones (bands)
For example
Numbers
2.447
3.826
4.790
6.428
Need to be broken down to:
1st band = 1.000
2nd band = 1.500
3rd band = 1.500
4th band = 1.500
5th band = 1.500

The end result looks like this:


Bands 1.000 1.500 1.500 1.500 1.500


2.447 1.000 1.447 0 0 0
3.826 1.000 1.500 1.327 0 0
4.791 1.000 1.500 1.500 791 0
6.429 1.000 1.500 1.500 1.500 929


Thanks!
Chrisso
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
OOPs
The formula in column B will work, but it is poorly constructed.
=MIN(1,$A5) should be =MIN(B$3,$A5)
Should avoid putting constants into formula, especially if they also are stated on the sheet.
 
Upvote 0

Forum statistics

Threads
1,214,551
Messages
6,120,161
Members
448,948
Latest member
spamiki

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