Reputation: 3
I need data in excel to return with a normalized value between 0 and 1. Following another forum, I tried the formula =A1-MIN($A$1:$A$8)/(MAX($A$1:$A$8)-MIN($A$1:$A$8))
which returns with the same value as A1. Not sure where I went wrong. Data is as follows, but should a value between 0 and 1
Upvotes: 0
Views: 8132
Reputation: 553
You missed a pair of parentheses.
=(A1-MIN($A$1:$A$8))/(MAX($A$1:$A$8)-MIN($A$1:$A$8))
Upvotes: 3