re-scaling data

arianfar.a

New Member
Joined
Jul 18, 2011
Messages
3
I have a column of values with the range of 0 to 1000 (scale is between 0 and 1000). How can I re-scale them to become between -0.15 to 0.45?

Thanks in advance
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
before I fathom how to do this... Why?

Oh yeah. Welcome to the forums. :)
most people are more helpful, I swear. But it's 00:30 here, and I have insomnia.
 
Upvote 0

icon1.gif
Re: re-scaling data
<hr style="color:#FFFFFF; background-color:#FFFFFF" size="1"> try this
Code:

=(A1*0.0006)-0.15
Thanx for the reply. How did you find the function to re-scale the data? Could you pls elaborate? Because when I re-scale them, most points fall out of the scale (-0.15-0.45).


</pre>
 
Upvote 0
Use this formula

=((A1-Min1)*(Max2-Min2)/(Max1-Min1))+Min2

where A1= Value in Cell A1
Min1=0
Max1=1000

Min2=-.15
Max2=.45
 
Upvote 0
Use this formula

=((A1-Min1)*(Max2-Min2)/(Max1-Min1))+Min2

where A1= Value in Cell A1
Min1=0
Max1=1000

Min2=-.15
Max2=.45


with your formula, 1000= 15.6 which is well out of the range
with my formula, 1000 = 0.45 as he said it should've
 
Upvote 0
Thnak littleltlin,
it's same as RSXchin's formula but in details. Is there any way to prove it, i.e. to be logically accepted for re-scaling? I mean from where this formula comes?

Thanks a lot,
 
Upvote 0
Actually not.

I have used this one: and it is Giving correct answer:

"B1"=((A1-0)*(0.45-(-0.15))/(1000-0))+(-0.15)

"B1001"=((A1001-0)*(0.45-(-0.15))/(1000-0))+(-0.15)


This is generic formula and can be used for any scaling problem.
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,553
Members
452,928
Latest member
101blockchains

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