Hello,
Is it possible to add linebreak into putdocx table ?
I have something like that with a random example :
So the result is : 0.5 [0.3-0.8] into my cell
But i would like to get a linebreak after 0.5 and before [ like that :
0.5
[0.3-0.8]
Is it possible ?
Thanks
Is it possible to add linebreak into putdocx table ?
I have something like that with a random example :
Code:
* Example generated by -dataex-. For more info, type help dataex putdocx begin local val1=(2/4) local val2=(1/4) local val3=(3/4) putdocx table mytable=(2,2) putdocx table mytable(1,1)=(string(`val1', "%3.1f") + " [" + string(`val2', "%3.1f") + "-" + string(`val3', "%3.1f") + "]") putdocx save test, replace
But i would like to get a linebreak after 0.5 and before [ like that :
0.5
[0.3-0.8]
Is it possible ?
Thanks
Comment