Help with Functions & formulas

  • Thread starter Thread starter Pauline
  • Start date Start date
P

Pauline

I am creating a form and the conditions are... a student is required to have
a minimum of 20 clinical hours. And for each additional 4 hours they receive
1 point up to 40 hours over the required minimum. For example for 24 hours
they would receive 1 point and 60 hours they would receive 10 points. How do
I write a formula to do this.

Thanks
R
 
=MIN(INT(MAX(0,num_Clinical_hours-20)/4),10)

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
=MEDIAN(0,INT((A1-20)/4),10)

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
Thank you ! I works perfectly.

Bob Phillips said:
=MIN(INT(MAX(0,num_Clinical_hours-20)/4),10)

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Thank you, I have tried your formula and Bob and both will do what I need.
Thanks again!
 
Back
Top