How to separate text + number from one cell into rows and analyse duplicates in Excel for Mac 2008

Paolo1309

New Member
Joined
Jan 4, 2014
Messages
10
Dear All

I am using Excel for Mac 2008 and I can't activate the VBE function. I have a very long code made of numbers and text as the example below:

"661270027-2","1465607302-2","600752322-2","2704608-2","560073572-2","1249297624-2","556533864-2","561251776-2","572372400-2","548584429-3","548584429-0","512879918-2","511218371-2","841230300-2","596398500-2","666150726-2"

The codes are all separated by -#"," and when I extract them and paste them on Excel they all go into the same cell A1 example below:

A1
661270027-2,"1465607302- 2","6007523222","27046082","560073572-2","
B1
C1

<tbody>
</tbody>

1) I would like to separate the long code into different rows and get rid off the -#"," at the same time so i can keep just the numeric codes I am interested about. example below:


B1
661270027
C1 1465607302
D1
600752322
E1
2704608
F1
560073572

<tbody>
</tbody>

2) I would like Excel to find any duplicates among the clean codes (if any) and alert me somehow (highlight is ok)

3) I would like Excel to "tell me" which codes duplicate the most (if any) perhaps organising them by numerical order (starting with the one who duplicates more often..)

I know I am asking a lot but all your help is very very much appreciated.

Cheers
 
Excel 2008 does not support VBA.
If your long string is in A1 of the active sheet, running this AppleScript will separate out the sub strings (overwriting the other cells of column A)
Code:
-- Apple Script

set myDelimiter to "\"" & "," & "\""

tell application "Microsoft Excel"
	set theString to "\"," & (value of range "A1") & ",\""
	
	set AppleScript's text item delimiters to {myDelimiter}
	
	set mySubStrings to text items of theString
	
	repeat with i from 1 to count of mySubStrings
		set value of (get offset range "A1" row offset i) to item i of mySubStrings
	end repeat
end tell
To run this open the Script Editor application and paste it into the window and press the Run button.
 
Upvote 0

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hey Rick
I was wondering if you still working on that code or perhaps you forgot. I appreciated all you did.
Thanks
 
Upvote 0
I was wondering if you still working on that code or perhaps you forgot. I appreciated all you did.
I had completely missed that your thread title said you were using Excel for a Mac 2008... the code I was trying to write for you would not have worked (I have a PC and write macoros in VBA), but mikerickson graciously jumped in with what I assume (from my past knowledge of his capabilities) is a working "Apple Script" for you to use (Message #21).
 
Upvote 0

Forum statistics

Threads
1,215,212
Messages
6,123,654
Members
449,113
Latest member
Hochanz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top