Hi Skinny,
There are a couple of things you can do to accomplish row sizing...one is easy and one is hard.
🙂 The easy way would be to write additional whitespace into the cells above and below your text. So if you wanted to put "abc" in a row, instead you would write:
[space]
abc
[space]
Where [space] represents a space or some other whitespace character. This would give you space above and below your text in each row, and that space would be the same height as your text. Now if you want to put in less space, that's where the hard solution comes in. You would have to modify the Report Generation VIs to add whitespace text to each cell before and after your desired text, and you would have to set the font on that whitespace to have a size that is equal to the height of the whitespace you desire. I don't recommend this approach since it would probably be pretty difficult, but if you want to try it, the VI where text gets added to cells in a Standard report table is vi.lib\Utility\NIReport.llb\Enter Row Cell Data.vi.
Good luck,
-D