Hello,
I would like to add new IDs into existing database. I would like to skip existing IDs and add new IDs in the name alphabetical order.
Here is the sample existing database:
| ID | Name |
| 1 | AAA |
| 2 | BBB |
| 3 | CCC |
| 7 | DDD |
| 10 | EEE |
| 11 | FFF |
This is the sample new data:
| ID | Name |
| NEW1 | GGG |
| NEW2 | HHH |
| NEW3 | III |
| NEW4 | JJJ |
| NEW5 | KKK |
| NEW6 | LLL |
| 1 | AAA |
| 2 | BBB |
The desired output is this: (new IDs are added as 4, 5, 6, 8, 9, 12)
| ID | Name |
| 1 | AAA |
| 2 | BBB |
| 3 | CCC |
| 4 | GGG |
| 5 | HHH |
| 6 | III |
| 7 | DDD |
| 8 | JJJ |
| 9 | KKK |
| 10 | EEE |
| 11 | FFF |
| 12 | LLL |
I also attached a sample workflow.
Sincerely,
Kazumi