Hi,
I have the cost center data, which come in as text data type and I need to convert the cost center in numeric form to be three digits format (1 to 001 and 22 to 022) and keep the cost center with text name as the way it is (e.g. HQ still shows as HQ). The data and desired results are as below:
| COST CENTER | DESIRED FORMAT |
| 1 | 001 |
| 128 | 128 |
| 130 | 130 |
| 555 | 555 |
| 22 | 022 |
| 60 | 060 |
| 4 | 004 |
| CALL CENTER | CALL CENTER |
| HQ | HQ |
Is there any formula can help me to do the conversion?
Thanks.