Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to remove or hide the first 5 digits in a string of 9 numbers for a
column. Any easy way to do this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you need it to be a number try
=value(right(A1,4)) if it can be text don't use the value() "RNeducator" wrote: I need to remove or hide the first 5 digits in a string of 9 numbers for a column. Any easy way to do this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello,
=--MID(A1,6,LEN(A1)-5) to get result as a number =MID(A1,6,LEN(A1)-5) to get it as a string If you are sure that it's a number and 9 digits you can take =MOD(A1,10000) or =--RIGHT(A1,4) HTH, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formulas to numbers | New Users to Excel | |||
Count comma separated numbers, numbers in a range with dash, not t | Excel Discussion (Misc queries) | |||
Checking Winning Numbers in the Lottery. | Excel Discussion (Misc queries) | |||
Match Last Occurrence of two numbers and Return Date | Excel Worksheet Functions | |||
Count and Sum Total occurrances of two specific numbers | Excel Worksheet Functions |