I need to calculate the MEDIAN of the rows matching some conditions.
Conditions are in the rows A, B, C and D and my infos are in a table called classic_v2_log. When I'm using the Sheet Name it works:
=MEDIAN(IF((ClassicRAW!B:B=A35)*(ClassicRAW!C:C=B35)*(ClassicRAW!D:D=C35)*(ClassicRAW!E:E=D35),ClassicRAW!F:F))
But if I try to use the Table reference it gives me a #N/A and if I try to use the Show Calculation Steps it goes beyond the Table.
I'm trying something like this and it's not working:
=MEDIAN(IF((classic_v2_Log[ [ Epochs] ]=A35),ClassicRAW!F:F))
I am confirming the formula with Ctrl+Shift+ENTER to make it as an array-formula.
=MEDIAN(IF((classic_v2_Log[ [ Epochs] ]=A35),ClassicRAW!F:F))it's just one range and the#N/Ais still there.