Hi, let’s say I have a table with 3 rows and 3 “columns”, I want to apply a ListFormat to all the cells of the first “column”, in order to have something like that
Data 1-1 | Data 1-2 | Data 1-3
Data 2-1 | Data 2-2 | Data 2-3
Data 3-1 | Data 3-2 | Data 3-3
that will become
<A> Data 1-1 | Data 1-2 | Data 1-3
<B> Data 2-1 | Data 2-2 | Data 2-3
<C> Data 3-1 | Data 3-2 | Data 3-3
I already create the table and the listformat and all values Data x-y are already set.
How can I apply the ListFormat not Paragraph after Paragraph on cells one after another ? (this work but all my datas are like this:
<A> Data 1-1 | Data 1-2 | Data 1-3
<A> Data 2-1 | Data 2-2 | Data 2-3
<A> Data 3-1 | Data 3-2 | Data 3-3
Nota : for some reasons my Data x-y are set with separate DocumentBuilders…
Many thanks for your help