Normalizing/standardizing numbers

abberyfarm

Well-known Member
Joined
Aug 14, 2011
Messages
733
Hi,

I'm trying to standardize numbers in a column with this formula http://office.microsoft.com/en-us/excel-help/standardize-HP005209273.aspx

I tried to use this to standardize the the first number 17 and drag it down, but its not working?
Code:
=STANDARDIZE(F2,F2:F53,F2:F53)

Any ideas?

Here are the numbers
Code:
20
17
18
13
0
18
30
30
14
23
30
30
27
14
30
22
30
5
18
30
30
30
22
17
30
30
11
14
30
30
30
30
30
24
30
30
10
19
30
7
24
18
0
0
1
8
9
21
5
2
30
26
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Use this
=STANDARDIZE(A2,AVERAGE($A$2:$A$53),STDEV($A$2:$A$53))
or
have a cell house the Average and the StDev
if D1 Housed Average =AVERAGE($A$2:$A$53)
and
E1 housed = STDEV($A$2:$A$53)
then formula would look like
=STANDARDIZE(A2,$D$1,$E$1)
 
Upvote 0
Thanks, I figured it out.

I actually have to normalize data in the range A to AD repetitively. Would you know of a macro that could normalize the data by column? The number of rows is variable.

Thanks for your help

Ash
 
Upvote 0

Forum statistics

Threads
1,224,505
Messages
6,179,152
Members
452,891
Latest member
JUSTOUTOFMYREACH

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