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
Thanks in advance
Use this formula
=((A1-Min1)*(Max2-Min2)/(Max1-Min1))+Min2
where A1= Value in Cell A1
Min1=0
Max1=1000
Min2=-.15
Max2=.45