I have 3 columns within a polygon layer I'm working with.
Column 1 = Landowner, 3 different values Column 2 = Parcel, N different values Column 3 = Management type, 5 different values
I would like to dissolve column 3 based on unique values in column 2, and again within column 1.
Example
C1 = A, B, C
C2 = 1, 2, 3, 4, 5
C3 = Z, Y, X
A 1 Z
A 1 Z
A 1 Y
A 2 X
A 2 Z
A 2 Z
B 1 Z
B 1 Y
Results
A 1 Z
A 1 Y
A 2 X
A 2 Z
B 1 Z
B 1 Y
Is there a tool in any version of ArcMap that I can set this up in or will I have to create something within the model builder or python?
Thanks