Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() just getting back into excel formulas... this is probally an easy question.... i basically have a collumn full of account numbers that represent numeric strings.... if the first position of the string is a zero, i would like to pull it out... so 01147548 would become 1147548 -- thanks! -- clegge ------------------------------------------------------------------------ clegge's Profile: http://www.excelforum.com/member.php...o&userid=29927 View this thread: http://www.excelforum.com/showthread...hreadid=496235 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Copy an empty cell, select the numbers and do editpaste special and select
add, then use a format like General and leading zeros won't show, if you need the numbers to be text you can use a help column, assume they start in A1 in the first cell use =IF(LEFT(TRIM(A1))="0",RIGHT(TRIM(A1),LEN(TRIM(A1) )-1),A1) copy down as long as needed then paste special as values in place, now you can remove the original column -- Regards, Peo Sjoblom (No private emails please) "clegge" wrote in message ... just getting back into excel formulas... this is probally an easy question.... i basically have a collumn full of account numbers that represent numeric strings.... if the first position of the string is a zero, i would like to pull it out... so 01147548 would become 1147548 -- thanks! -- clegge ------------------------------------------------------------------------ clegge's Profile: http://www.excelforum.com/member.php...o&userid=29927 View this thread: http://www.excelforum.com/showthread...hreadid=496235 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() If your cell is formated as "General" the leading "0" should disappear automatically. -- wjohnson ------------------------------------------------------------------------ wjohnson's Profile: http://www.excelforum.com/member.php...o&userid=29640 View this thread: http://www.excelforum.com/showthread...hreadid=496235 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() the formula worked great... thanks!!!!! -- clegge ------------------------------------------------------------------------ clegge's Profile: http://www.excelforum.com/member.php...o&userid=29927 View this thread: http://www.excelforum.com/showthread...hreadid=496235 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I remove leading apostrophes in Excel? | Excel Discussion (Misc queries) | |||
Remove leading space | Excel Worksheet Functions | |||
Remove last character of text string | Excel Worksheet Functions | |||
Remove text leading zero in text string | Excel Worksheet Functions | |||
Remove text leading zero in text string | Excel Worksheet Functions |