I am having a hard time using generate rows/multi row tool to increment the values by 1 and not sure where I'm going wrong. Here is the scenario. One of the column in a data set is Alert ID which is of the format AE100, AE101,AE102 etc. I have to take the maximum of this and add a new column in the output file where the value should be incrmented by 1. For example, if the max value is AE102 then in the new column the value should begin as AE103 and continue as AE104,AE105 till the last value of account id. Any help on this would be appreciated. Thank you in advance!
Input
Account ID Alert ID
1 AE100
2 AE101
3 AE102
4 AE103
5 AE104
After using the summarize tool, the max value will be AE104
Desired output
Account ID New_Alert
1 AE105
2 AE106
3 AE107
4 AE108
5 AE109