Best way to maintain data formatting

Best way to maintain data formatting when extracting a block.
In my data file I have some pages of a final report that can vary between 1 and 85 lines per page, presented in two ways, as shown in the images. I am performing a repetition step until there are no more elements and extracting the entire block, in this example DM1 has 24 lines in total and DM2 85 lines. And using a pivot table in the Print Section, but it seems to me that the data is somehow together and does not follow the text formatting.




In the CSS setup for displaying your text, have the following:

white-space:pre;

That will force the browser to not remove contiguous spaces.

Also, in your first exmaple, they aren’t spaces but dot ( …). in this case, use a monospace font like Courrier

1 Like

Tks man. It’s work using white-space:pre; and adjusting font size in box content formatting properties