Question

  • Thread starter Thread starter odditie
  • Start date Start date
O

odditie

Hey

I have a pretty complicated question, it's probably easy for wel
versed users, but I'm not sure what the cleanest way to do this is

Here's what I'm doing. I'm taking a column of numbers, then in th
column next to it I want to do the following

=(B2/(AVERAGE(B2:B29))*75

I've figured it out to that point, but rather than adjusting each o
the other cells when I use the format painter to find this value in th
column, I'd like to just be able to format them all the same and hav
them all find their value

I hope this explains what I'm trying to do well enough, I couldn'
really put it into words

Thank yo
 
Another question with the same formula.

How do I set it to have minimum and maximum values?

I want the resulting value to be between 60 and 90
 
Not quite an average then ;-)

=IF(B2/AVERAGE(B$2:B$29)*75<60,60,IF(B2/AVERAGE(B$2:B$29)*75>90,90,B2/AVERAGE(B$2:B$29)*75))

Regards

Trevor
 
Back
Top