Good morning, I have just found some formulae to enable me to find the MEDIAN (and 95th Percentile) using one criterion on another column:
What I would like to be able to do is do an 'OR' on Column C to get the Median of Column K if it's either LD* or RAT in Column C.
I have tried:
But this just gives a #NUM! error.
Am I trying the impossible or have I just got incorrect sytax?
Many thanks,
D€$
=AGGREGATE(16,6,(K4:K12)/((LEFT(C4:C12,2)="LD")*(K4:K12<>"")),0.5)
=AGGREGATE(16,6,(K4:K12)/((C4:C12="RAT")*(K4:K12<>"")),0.5)
What I would like to be able to do is do an 'OR' on Column C to get the Median of Column K if it's either LD* or RAT in Column C.
I have tried:
=AGGREGATE(16,6,(K4:K12)/((Or(LEFT(C4:C12,2)="LD",C4:C12=”RAT”))*(K4:K12<>"")),0.5)
But this just gives a #NUM! error.
Am I trying the impossible or have I just got incorrect sytax?
Many thanks,
D€$