After the Selection.Paste, what do you have in the document?
Is it a list of numbers that looks like
000204123456000¶
010204123456060¶
020204123457780¶
If that is the case, at that point, I would use the following code
Dim i as Long, myrange as Range
With ActiveDocument
For i = 1 to .Paragraphs.Count
Set myrange = .Paragraphs(i).Range
myrange.Text = Left(myrange, 2) & vbTab & Mid(myrange, 3, 2) & vbTab
& Mid(myrange, 5, 6) & vbTab & Mid(myrange, 10, 3) & vbTab & Right(myrange,
3)
Next i
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Sub PasteICNs()
> '
[quoted text clipped - 53 lines]
>> > have
>> > explained this clear enough.
rhon101 - 17 Aug 2005 02:44 GMT
Yes, except it don't have the first two numbers on the list. The 00-99 I was
refering to is on the screen that I want to paste to. Those numbers are just
representations of the number of ICN that are put on the page. They are
protected and can not be changed. A good reference tool because if you know
you have 20 INC's that you need to retrieve then if you are not on the number
19 after you have entered all the ICN's (because the first ICN will be in the
placeholder number 00) then you have made a mistake by either skipping or
duplicating an ICN. The screen that I want to paste to has 00-02 on the first
row left to right and continues down to 99. For each ICN to be pasted it
needs to seperate the ICN into 4 parts, for example between 00 and 01 the
numbers (ICN's) need to paste like:
-- ----- --- --- after that ICN is entered it automatically tabs to the
next field to paste another ICN. The program does not recognize any other
fields on this screen, it only tabs to the fields where you enter the ICN's.
I will try what you suggested when I get to work tomorrow. Thank you and I
hope it works too.
> After the Selection.Paste, what do you have in the document?
>
[quoted text clipped - 73 lines]
> >> > have
> >> > explained this clear enough.
Doug Robbins - 17 Aug 2005 05:14 GMT
So even though you don't paste the 00-99, after you do paste, what appears
is
000204123456000¶
010204123456060¶
020204123457780¶
If that is the case, the code that I gave you will insert the necessary
tabs.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Yes, except it don't have the first two numbers on the list. The 00-99 I
> was
[quoted text clipped - 110 lines]
>> >> > have
>> >> > explained this clear enough.