1

I have the following sheet:

enter image description here

I would like to take the median for all rows with a K.

I know how to take the median of all transactions. The hard part for me is "search for K and take only this transactions".

Any recommendations how to solve this?

I appreciate your answer!

user2051347
  • 1,609
  • 4
  • 23
  • 34

1 Answers1

3

something like this should work:

=MEDIAN(IF(A2:A16="K",B2:B16))

and press CTRL+SHIFT+ENTER to evaluate it

Dmitry Pavliv
  • 35,333
  • 13
  • 79
  • 80