Excel 2016 UNIQUE function

jerbear1949

New Member
Joined
Feb 23, 2020
Messages
8
Office Version
  1. 2016
Platform
  1. Windows
I have Office 2016 on my computer. I found out that the UNIQUE function and other new functions are not available for my version.
I need to identify a unique number is a 2 column 6 row array.
Current Data
Name Number
Joe 4
Pete 3
Mike 4
Sam 4
Fred 2
Russ 3

Desires Result
Name Number
Fred 2


Any suggestions?

Thanks
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Try:

Book1
ABCDE
1NameNumberNameUnique Number
2Joe4Fred2
3Pete3  
4Mike4  
5Sam4  
6Fred2
7Russ3
8
Sheet12
Cell Formulas
RangeFormula
D2:D5D2=IF(E2="","",INDEX(A$2:A$7,MATCH(E2,B$2:B$7,0)))
E2:E5E2=IFERROR(AGGREGATE(15,6,B$2:B$7/(COUNTIF(B$2:B$7,B$2:B$7)=1),ROWS(E$2:E2)),"")
 
Upvote 0
Try:

Book1
ABCDE
1NameNumberNameUnique Number
2Joe4Fred2
3Pete3  
4Mike4  
5Sam4  
6Fred2
7Russ3
8
Sheet12
Cell Formulas
RangeFormula
D2:D5D2=IF(E2="","",INDEX(A$2:A$7,MATCH(E2,B$2:B$7,0)))
E2:E5E2=IFERROR(AGGREGATE(15,6,B$2:B$7/(COUNTIF(B$2:B$7,B$2:B$7)=1),ROWS(E$2:E2)),"")
Thank You
 
Upvote 0
Try:

Book1
ABCDE
1NameNumberNameUnique Number
2Joe4Fred2
3Pete3  
4Mike4  
5Sam4  
6Fred2
7Russ3
8
Sheet12
Cell Formulas
RangeFormula
D2:D5D2=IF(E2="","",INDEX(A$2:A$7,MATCH(E2,B$2:B$7,0)))
E2:E5E2=IFERROR(AGGREGATE(15,6,B$2:B$7/(COUNTIF(B$2:B$7,B$2:B$7)=1),ROWS(E$2:E2)),"")
Eric:

Thanks for the help!! I could not respond earlier because I was at the VA clinic. Anyhow, Can I ask for another modification? Besides detecting the unique number(s), I need it to
detect the unique lowest number!

Thanks
 
Upvote 0
It already does that. The lowest unique number will be the top row. If you drag the formula down the sheet, the other unique numbers will be presented in ascending order.
 
Upvote 0
It already does that. The lowest unique number will be the top row. If you drag the formula down the sheet, the other unique numbers will be presented in ascending order.
Is ther eany way if two or people have the lowest number that the out put would wither be a blank or NA or something like that?

Thanks
 
Upvote 0
If two or more people have the lowest number, it wouldn't be unique. Could you show an example of what you're looking for?
 
Upvote 0
If two or more people have the lowest number, it wouldn't be unique. Could you show an example of what you're looking for?
Hi:

I'm going to be away for a few days. I'll send you something early next week.

Thank you again for your help!
 
Upvote 0
Hi:

I'm going to be away for a few days. I'll send you something early next week.

Thank you again for your help!
II hope this is the last request from you!!! If the number obtained from the list is greater than 4, than the number cell should be blank as well as the name cell.
 
Upvote 0

Forum statistics

Threads
1,215,062
Messages
6,122,925
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top