Excel: Parse Command Doesn't Work with NumbersLast reviewed: November 1, 1994Article ID: Q70105 |
SUMMARYThe Microsoft Excel Parse command (on the Data menu) can only parse text entries. Numbers cannot be parsed correctly using this function.
MORE INFORMATIONTo parse a number, use one of the following methods:
Method 1The following functions can be used to parse a number:
A B C 1 2345 =VALUE(MID(A1,1,2)) =VALUE(MID(A1,3,2)) 2 1454 =VALUE(MID(A2,1,2)) =VALUE(MID(A2,3,2)) 3 7654 =VALUE(MID(A3,1,2)) =VALUE(MID(A3,3,2))These functions will return the following:
A B C 1 2345 23 45 2 1454 14 54 3 7654 76 54 Method 2
|
KBCategory: kbother
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |