Thread: Extracting data
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Extracting data

=right(A1,4) as text
=--right(A1,4) if you want it as a number
--
David Biddulph

"DestinySky" wrote in message
...
I have 000000VC3236 in a cell and I need only the last 4 numbers of 3236.
How
can I extract that data? I have tried +SUM(MID(A1,3,FIND("VC",A1)-3)) .
What
am I doing wrong??