Hi guys
I have two files as listed below. I want to compare first column from second file with the first column from first file, if exists, give it the same value of second column from the first file as second column for the second file. If not, increase the biggest value of second column of first file by one and add it as a value for second file.
Any tips to start working on.
Thanks in advance
File 1:
C1 Value
123 5
121 4
122 6
212 7
File 2:
C1
123
111
122
124
The results should be
File 1:
C1 Value
123 5
121 4
122 6
212 7
File 2:
C1
123 5
111 8
122 6
124 9