--
Andy.
"Beth" <Be...@discussions.microsoft.com> wrote in message
news:313FCA19-664D-494E...@microsoft.com...
> Hello everyone,
>
> I have got a list of values e.g. 61025, 68653
>
> I want these to be shown as 610.25, 686.53.
>
> Is there a function that I can use to achieve this?
>
> Regards,
> Beth
Assuming your number is in A1.
=LEFT(A1,(LEN(IA1)-2))&"."&RIGHT(A1,2)
If all the numbers are
"Beth" <Be...@discussions.microsoft.com> wrote in message
news:313FCA19-664D-494E...@microsoft.com...