=MEDIAN(IF(Platform!R$2:R$821="Unit (W)";IF(Platform!R$2:R$821="Unit (S)";
IF(Platform!R$2:R$821="Unit (F)";Platform!AE$2:AE$821))))
Can someone please correct this formula? I want to find the Median of the data in column AE2:AE821, but only for the values with the text specified in the IFs functions. I get #NUM! back, thanks
By putting the consecutive IFs in the TRUE portion it is acting like
AND. R cannot be both"Unit (S)"and"Unit (F)"so put them in the FALSE postition:Now it will be
ORIt can also be shortened using
*forANDand+forOR:Note in my Excel I use
,instead of;, so you may need to change all the,to;