Forum Discussion
EDV2021
Oct 29, 2021Copper Contributor
Excel: Finding Highest & Lowest Salaries by job title
Hi there I am trying to find a formula that will help complete the summary page in the example attached. I need to return the highest and lowest salaries by Job title. I tried VlookupMax and Min an...
SergeiBaklan
Oct 30, 2021Diamond Contributor
As variant
=SMALL( UNIQUE( FILTER(Data!B:B, Data!A:A = A2) ), 1)
and
=LARGE( UNIQUE( FILTER(Data!B:B, Data!A:A = A2) ), 1)