Percentile

  • Thread starter Thread starter PAL
  • Start date Start date
P

PAL

Is there a way to modify this formula, with the Percentile function to get
different percentiles instead of median. I have used this formula as an
array.........

=MEDIAN(IF('1 Worksheet'!$H$2:$H$1309="",IF('1
Worksheet'!$E$2:$E$1309="Biosurgical Specialties",'1
Worksheet'!$I$2:$I$1309,"")))
 
Hi,

Like this

=PERCENTILE(IF('1 Worksheet'!$H$2:$H$1309="",IF('1
Worksheet'!$E$2:$E$1309="Biosurgical Specialties",'1
Worksheet'!$I$2:$I$1309,"")),0.1)

The last 0.1 is the 10th percentile so change to suit. Once again an array.

Mike
 
Back
Top