Guys thanks a ton for  responses ,i need to remove only first  letter in
cell if it is zero in alpha numeric data - regards - bhanu

On 04-Apr-2011 3:45 AM, "STDEV(i)" <setiyowati.d...@gmail.com> wrote:

run this macro

Sub RemoveAllZeros()
   Dim xCell As Range
   For Each xCell In ActiveSheet.UsedRange
      xCell = Replace(xCell, "0", "")
   Next
End Sub

since you ask for  "REMOVING ZERO IN EVERY CELL"
1500   will be 15
2100500  will be 215
and so on






On Sun, Apr 3, 2011 at 9:55 PM, bhanu prakash <bhanu...@gmail.com> wrote:
>
> Hi - need it help...



-- 
----------------------------------------------------------------------------------
Some import...

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

Reply via email to