Forum Discussion
Anonymous
3 years agoNot applicable
Replace all Distinct Values in a column
I have a column "Employee" that consists of many different employees repeated multiple times with the cooresponding projects they work on. ProjectID | Employee 123 John 456 ...
- 3 years ago
You could : use a duplicate of the table, remove all columns except Name, Remove Duplicates,
Add an Index column (from 1). Add a custom column "Employee" & Index number
You can then Merge that Query with the original on the name column to bring the EmployeeX text back
HotChilli
3 years agoCommunity Champion
You could : use a duplicate of the table, remove all columns except Name, Remove Duplicates,
Add an Index column (from 1). Add a custom column "Employee" & Index number
You can then Merge that Query with the original on the name column to bring the EmployeeX text back
- Anonymous3 years agoNot applicable
This worked, thank you!