akuccputsedut
New Member
- Joined
- May 6, 2011
- Messages
- 5
I have a lot of record that contain number like shown below:
<table border="0" cellpadding="0" cellspacing="0" width="187"><col style="width: 140pt;" width="187"> <tbody><tr style="height: 15pt;" height="20"> <td class="xl63" style="height: 15pt; width: 140pt;" height="20" width="187">0000082181
</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl63" style="height: 15pt;" height="20">0000005465
</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl63" style="height: 15pt;" height="20">0000028997
</td> </tr> </tbody></table>
I want to remove all 0 in front of this number in excel. Can anyone here help me.. I use excel 2007..
I already try using formula
but it only remove 5 character in front what about the number that have 6 '0'......
Please help..
Thanks in advance.
</pre>
<table border="0" cellpadding="0" cellspacing="0" width="187"><col style="width: 140pt;" width="187"> <tbody><tr style="height: 15pt;" height="20"> <td class="xl63" style="height: 15pt; width: 140pt;" height="20" width="187">0000082181
</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl63" style="height: 15pt;" height="20">0000005465
</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl63" style="height: 15pt;" height="20">0000028997
</td> </tr> </tbody></table>
I want to remove all 0 in front of this number in excel. Can anyone here help me.. I use excel 2007..
I already try using formula
Code:
=IF( LEFT(A1) = "0" , RIGHT(A1, LEN(A1)-5), A1)
but it only remove 5 character in front what about the number that have 6 '0'......
Please help..
Thanks in advance.
</pre>