Question

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
 
T

Trevor Shuttleworth

Try:

=B2/AVERAGE(B$2:B$29)*75

and drag down to Row 29

Regards

Trevor
 
O

odditie

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
 
T

Trevor Shuttleworth

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
 

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