How to perform 0 to 1 Normalization in excel

user3415874 picture user3415874 · Apr 9, 2014 · Viewed 95.6k times · Source

I have an excel file with a column containing some numbers i need to normalize the distribution between 0 and 1 using this formula x-min(distribution)/max(distribution)-min(distribution). any help will be appreciated.

Answer

Nicholas Flees picture Nicholas Flees · Apr 9, 2014

Try this:

=(G9-MIN($G$9:$G:$12))/(MAX($G$9:$G$12)-MIN($G$9:$G$12))