I have the need to increment the seconds on a date/time field if an ID is the same. An example of the data would include
| ID | DATE/TIME |
| 3 | 2015-06-03 00:00:00 |
| 3 | 2015-06-03 00:00:00 |
| 5 | 2014-01-15 00:00:00 |
| 5 | 2014-01-15 00:00:00 |
| 5 | 2014-01-15 00:00:00 |
The end result I'm looking for is...
| ID | DATE/TIME |
| 3 | 2015-06-03 00:00:00 |
| 3 | 2015-06-03 00:00:01 |
| 5 | 2014-01-15 00:00:00 |
| 5 | 2014-01-15 00:00:01 |
| 5 | 2014-01-15 00:00:02 |
I figured I would use the multi-row tool where I could group by the ID and then use an expression to add the increment. However I cannot figure out the format of the expression I should use.