In col if high is 83 and low 15 how do i get high =100 and low=0

S

Sarah

In a column if highest number is 83 and lowest is 15. What formula should I
use to get high =100 and low=0.

Eg what should be the formula used here: A4 = 35.

A201 = 83 MAX
A202 = 15 MIN
 
S

Stephen

Sarah said:
In a column if highest number is 83 and lowest is 15. What formula should
I
use to get high =100 and low=0.

Eg what should be the formula used here: A4 = 35.

A201 = 83 MAX
A202 = 15 MIN

In principle, you would need to calculate
(A4-min)*100/(max-min)

Assuming there is nothing in column A except your numbers, you could do the
whole job with this formula:
=(A4-MIN(A:A))*100/(MAX(A:A)-MIN(A:A))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top