I am trying to return all columns for a row that has the minimum value for one column, example:
COL 1 COl 2 COL3
Steve XF3 17
Steve XF4 2
Steve XF5 1
Jason XF6 16
Jason XF7 2
I would like to return rows 3 and 5 and all of their respective columns, because COL3 has the lowest value FOR STEVE and JASON. Pretend column2 cannot be leveraged as it cannot.
Much appreciated for any help on this.
I can't paste into here but I tried applying min function but ran into issues because there are multiple steve and jason.