Hello,
I have a workflow where I parsed the numbers from the 'ID' column to the 'Version_EDIT' column. I am trying to create a formula where I can sort by the highest version in 'Version_EDIT' by unique 'ID' group. Anything less than the highest version, the number '0' should be applied in the 'Deployment' column and in the 'Comments' column should write 'lesser version'.
In the highest version rows, leave the 'Comments' and 'Deployment' columns blank (as is).
Base file(example):
| ID | VERSION | Deployment | Comments | Version_EDIT |
| 5698-A14 | V3 | | | 3 |
| 5698-A14 | V2 | | | 2 |
| 5698-A14 | V1 | | | 1 |
Expected Output(example):
| ID | VERSION | Deployment | Comments | Version_EDIT |
| 5698-A14 | V3 | | | 3 |
| 5698-A14 | V2 | 0 | lesser version | 2 |
| 5698-A14 | V1 | 0 | lesser version | 1 |
Please see attached of my working file. Thank you!