RAA! I typed all the steps out, and when I was trying to insert pictures it failed, reload the site, and lost all my comments.
Anyhoo, you can do this in a few steps. I'm sure someone here will have a more efficient method but this is what I have on top of my head.
1) Do a Find and Replace All (Ctrl + H) and find "(*)", and replace it with ","
Attachment 402998
2) Then do a Text To Column: Delimited --> Comma
Attachment 402999
3) You should have in column A numbers that look like 2009 76 294.
4) In columns B onwards, you should have numbers without the year (e.g. 69 683)
To deal with column A
A1) Insert 2 columns after column A
A2) To extract year, in new column B,
Formula:
=VALUE(LEFT(A1,4))
A3) To extract remaining numbers, in new column C,
Formula:
=RIGHT(A1,LEN(A1)-4))
A4) Copy columns B and C and Paste Special --> Values
To deal with the spaces in the numbers
1) Do another Find and Replace All (Ctrl + H) and find " " and replace with ""
2) Note: the picture below you won't see any characters in the Find and Replace field, but know that the Find field will have 1 space in there, the Replace field will have nothing
Attachment 403000
EDIT: Or you can automate all of the steps above using VBA
Bookmarks