Create Unique ID # for ALOT of Data

cazadores

New Member
Joined
Jul 9, 2019
Messages
3
Hello,

Have been struggling with this for some time.

Basically- we have land owners who own multiple properties across different counties.

I may not uncover all of what one land owner owns - and so assigning a unique ID # to them proves difficult.

I need to assign each individual NAME with an ID #.

I then wish to create a unique PROPERTY ID - that will incorporate the above NAME ID #.

So all together I need:

one ID # for the Individual Owner

one ID # for the properties (that incorporates the Individual Owner ID #)

I then need a method to check NEW lists for EXISTING owners.

Any help is appreciated. It has been a nightmare!
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Just a thought, if I understand part of the issue, to consider.
If you have the names (with duplicates) in column A (A1 header), and you create an initial ID for the first person (e.g., 1000) in B2, then this formula in B3 (and fill down) will retain the ID for that person and increment IDs for the others.

Code:
=IF(ISNA(MATCH(A3,A2:$A$2,0)),MAX(B2:$B$2)+1,VLOOKUP(A3,A2:$B$2,2,FALSE))

Any help?
 
Upvote 0
Yes that helped solving the Unique ID problem for the owners.

Now I need to create an ID for the individual properties they own. Basically:

"Owner 1" owns in towns "X,Y,Z"

I need an ID for each "X", "Y", "Z" that also includes the "Owner 1" ID.

"Owner 1-X"

"Owner 1-Y"

"Owner 1 -Z"

Something like this.
 
Upvote 0
Is this over-simplifying it?


Excel 2010
ABCD
1NamesUnique IDPropertyBy Owner ID
2Owner 11000Property XOwner 1-1000-Property X
3Owner 21001Property AOwner 2-1001-Property A
4Owner 31002Property WOwner 3-1002-Property W
5Owner 11000Property YOwner 1-1000-Property Y
6Owner 31002Property VOwner 3-1002-Property V
7Owner 21001Property BOwner 2-1001-Property B
8Owner 51003Properdy DOwner 5-1003-Properdy D
9Owner 21001Property COwner 2-1001-Property C
10Owner 51003Property EOwner 5-1003-Property E
11Owner 61004Property POwner 6-1004-Property P
Sheet2
Cell Formulas
RangeFormula
B3=IF(ISNA(MATCH(A3,A2:$A$2,0)),MAX(B2:$B$2)+1,VLOOKUP(A3,A2:$B$2,2,FALSE))
D2=A2&"-"&B2&"-"&C2
 
Upvote 0
Yes and no. I would only use the Unique ID within the Property ID.

Basically- one owner can own many properties. Each Property needs to be unique - and also contain the singular Owner Unique ID.
 
Upvote 0

Forum statistics

Threads
1,214,893
Messages
6,122,121
Members
449,066
Latest member
Andyg666

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