Hello! Need help making BOTH of these formulas work together.
Brief description of the problem. I am working with a column of numbers where I always need to remove the last number, and if the first number is zero, then I also need to remove that.
Formula A:
=LEFT(C4,LEN(C4)-1) — Simply removes the last digit.
Formula B:
=IF(LEFT(C4,1)="0",MID(C4,2,225),C4) — Removes the first digit if it is 0
At first, I thought it is as simple as nesting any other IF, but since I need both formulas to always work, that is failing. Appreciate any help!
Bookmarks