I have data that looks like this: CI-1, CK-08, H-03, J-12, CM-11, B-8
I want all the numerical characters from 1 to 9 to have 0s before them with the letters unchanged.
Actual | Result |
CI-1 | CI-01 |
CK-08 | CK-08 |
H-03 | H-03 |
B-8 | B-08 |
I am able to do this through several separated formulas (step by step; separating the letters from the numbers, adding the leading 0, concatenating them back together) however, this is taking too long to compute.