How to split a paragraph in two columns

L

Le Nordiste

Hi from Meudon (France)

I have many individual paragraphs to split into two columns.
I know how to individually "select" each paragraph,
but i can't succeed in splitting it by VBA.


Thanks for your help members of VBA beginners group
 
G

Graham Mayor

Do you mean like

Selection.PageSetup.TextColumns.SetCount _
NumColumns:=2

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
L

Le Nordiste

I want to act on only one paragraph in its turn.

In fact, i get from a macro in ACCESS a .txt file where are listed the
different tables and their fields.
The fields are listed in a single paragraph - one per table-, each
field being separated from the other by a car(11).
Each table text looks as :

Table1_Name dateCreation dateModification char(13)
Field_1 char(11) Field_2 char(11) Field_3 char(11) Field_4 char(11)
char(13)
Table2_Name ……

I want to get in WORD document :

Table1_Name dateCreation dateModification
Field_1 char(11) Field_3 char(11)
Field_2 char(11) Field_4 char(11)
char(13)
Table2_Name ……

So i need something as :
Paragraph.Setup.TextColumns.SetCount NumColumns:=2

Thanks by anticipation
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top