=IF(MID(B2,2,1)="0",LEFT(B2,1)&RIGHT(B2,1),B2) |
To convert in the other direction, from single digit to two digit format (A1 to A01), the following formula will work:
=IF(LEN(B2)<3,LEFT(B2,1)&"0"&RIGHT(B2,1),B2) |
thing1 thing2 thing3 |
--> | "thing1", "thing2", "thing3" |