Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to calculate a percentile, but my data is not organized as one single
array, but in 2 ranges. I've tried things like: =+PERCENTILE({A1:A4,D8:D11},0.9) =+PERCENTILE({A1:A4;D8:D11},0.9) =+PERCENTILE(A1:A4&D8:D11,0.9) ={+PERCENTILE(A1:A4&D8:D11,0.9)} Nothing seems to work... Any ideas? Thanks |
#2
![]() |
|||
|
|||
![]()
To calculate a percentile for data in two different ranges, use the following formula:
Formula:
Formula:
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In article ,
Idoia wrote: I need to calculate a percentile, but my data is not organized as one single array, but in 2 ranges. I've tried things like: =+PERCENTILE({A1:A4,D8:D11},0.9) =+PERCENTILE({A1:A4;D8:D11},0.9) =+PERCENTILE(A1:A4&D8:D11,0.9) ={+PERCENTILE(A1:A4&D8:D11,0.9)} Nothing seems to work... Any ideas? Thanks Try... =PERCENTILE((A1:A4,D8:D11),0.9) -- Domenic http://www.xl-central.com |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks, I seem to have tried everything but the easy way...
Now a bit more difficult: what if my range is in a different sheet in the same book? The ranges are located in a different place in each sheet, so 3D references won't work? Your formula now becomes =+PERCENTILE((A1:A4,Sheet2!D8:D11),0.9) But stops working Thanks a lot "Domenic" wrote: In article , Idoia wrote: I need to calculate a percentile, but my data is not organized as one single array, but in 2 ranges. I've tried things like: =+PERCENTILE({A1:A4,D8:D11},0.9) =+PERCENTILE({A1:A4;D8:D11},0.9) =+PERCENTILE(A1:A4&D8:D11,0.9) ={+PERCENTILE(A1:A4&D8:D11,0.9)} Nothing seems to work... Any ideas? Thanks Try... =PERCENTILE((A1:A4,D8:D11),0.9) -- Domenic http://www.xl-central.com |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Someone else can hopefully answer your question, but what I can tell you is
that you don't need the + signs. A Excel formula starts with =, not with =+. The + is a relic from old Lotus spreadsheets. -- David Biddulph "Idoia" wrote in message ... I need to calculate a percentile, but my data is not organized as one single array, but in 2 ranges. I've tried things like: =+PERCENTILE({A1:A4,D8:D11},0.9) =+PERCENTILE({A1:A4;D8:D11},0.9) =+PERCENTILE(A1:A4&D8:D11,0.9) ={+PERCENTILE(A1:A4&D8:D11,0.9)} Nothing seems to work... Any ideas? Thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In article ,
Idoia wrote: Thanks, I seem to have tried everything but the easy way... Now a bit more difficult: what if my range is in a different sheet in the same book? The ranges are located in a different place in each sheet, so 3D references won't work? Your formula now becomes =+PERCENTILE((A1:A4,Sheet2!D8:D11),0.9) But stops working Thanks a lot If each range references a single column and the ranges are the same size, try... =PERCENTILE(CHOOSE({1,2},A1:A4,Sheet2!D8:D11),0.9) -- Domenic http://www.xl-central.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Display Percentile | Excel Worksheet Functions | |||
Use excel to calculate a percentile from data in multiple sheets | Excel Worksheet Functions | |||
to get its k-value from percentile and array | Excel Worksheet Functions | |||
Returning all data from a list above the nth percentile | Excel Worksheet Functions | |||
percentile | Excel Worksheet Functions |