Carim:
I do not understand the steps to take to make this work. When I try to
use =VALUE(TRIM(A1)), I get the following error in cell B1 #VALUE!.
Thanks
> Hi,
>
[quoted text clipped - 6 lines]
> Cheers
> Carim
These appear to be credit card numbers, so the problem is that excel only
supports 15 digits of precision when working with numbers. The reason the
space is there is so they will be treated as text and you won't loose the
last digit. To break them apart use formulas. Assume the first number is in
A2
in B2
=Mid(A2,2,4)
in C2
=Mid(A2,6,4)
in D2
=Mid(A2,10,2)
in E2
=Mid(A2,14,4)
then select B2:E2 and drag fill down the column.

Signature
Regards,
Tom Ogilvy
> Hi,
>
[quoted text clipped - 6 lines]
> Cheers
> Carim