@OskarJennischeYou can use an old padding trick to accomplish this where there is no padding or formatting functions available.. With the following formula:
Left([number],2) & Right("0000000" & ToNumber(Right([number],8))+1,8)
What it does is:
- grabs the first 2 letters (I know you hardcoded the "AB", I just made it a little more dynamic)
- grabs the last 8 digits, converts it to a number and adds 1 to it (as you did)
- concatenates 7 zeros to the start of your new number
- grabs the last 8 digits removing extraneous zeros
- concatenates the 2 letters to the zero padded new number
------------------------------
Micheal Charron
Senior Manager
RBC
America/Toronto
------------------------------
Micheal Charron
RBC
Toronto, Ontario
Canada