Hello all,
I thought this be trivial but I'm just not finding the right solution.
I have a column of cell entries where there are occasion input errors for the non-numerical portion of the values. So, I want to automatically correct these errors.
Examples:
Input value / Corrected input value)
C005 / C005 (already correct)
CT021 / C021
044 / C044
33 / C033
In other words, the correct value is always going to be in the format, "Cxxx". Where xxx = 000 - 999. The leading zeros are important.
Thank you
So, I tested a few scenarios with the first formula:
C034 - good
C12 - error (Function UNARY_MINUS parameter 1 expects number values. But C12 is a text and cannot be coerced to a number.)
CC054 - error (same as above)
1 - result = C000
22 - result = C000
I couldn't get the second formula to work.