Forum Discussion
gressco
Jun 10, 2021Copper Contributor
Leading zeros
Good Morning, I lost my leading 0's on all of my 5 digit product numbers. Is there an If statement that can find anything with a 4 digit number to add a leading 0? Thanks!
- Jun 10, 2021Not sure exactly what you want your end product to look like, do you want it to be all text? Would something like this work? This is unaffected if you convert cell format to text. =IF(LEN(A2)=4,0&A2,A2)
When I try the REPT formula on my end it doesn't change any of the calculations ran off of it.
davheili
Jun 10, 2021Brass Contributor
I'd like to offer one other alternative to DKoontz formula.
I've always been one for simplicity, so I sometime use something like this:
=RIGHT("00000" & A2,5)
This will work for any length number up to 5 digits long. And has the added benefit of formatting the result as text so the leading zeros don't disappear again.
I've always been one for simplicity, so I sometime use something like this:
=RIGHT("00000" & A2,5)
This will work for any length number up to 5 digits long. And has the added benefit of formatting the result as text so the leading zeros don't disappear again.