I am trying to modify a reporting format in order to add a new row that will be used to add a report description. In some cases, the data that will be shown on the screen will exceed the horizontal length of the report so I figured that I would rowspan=2 to account for instances where it may go to the next line. I've gotten it to work so that it will show the new row correctly but have discovered that it now compresses the report (but the horizontal bar on the bottom still goes across what is now whitespace). If I remove the rowspan, then it doesn't show any of the additional lines. I am at something of a loss to understand why this should be and am wondering if someone else has encountered this problem or can recommend a potential solution. Any advice would be greatly appreciated. Below is a sample of the rendered HTML for that one TD, but I can give the full code if need be (I hesitate only because it is a long piece of code using XML and HTML).
------------------------------------------------------------------------------------------------------------------------
"Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened."
- Winston Churchill
Code:
<TR height=21 style='height:15.75pt'>
<TD width=1100 height=21 [COLOR=red]rowspan=2[/color] colspan=19 class=normal style='height:15.75pt;mso-ignore:colspan'><strong>Report Desc: </strong>This report lists a bunch of information that people might actually use. But what I am really wondering is how long this will need to go on in order to get something useful. I suppose I could drag this out for quite a while in order to get it to go over two lines but then I'm wondering whether or not this will bring back the proper values. I'm also wondering what will happen should it encounter any apostrophes. It may fail or it may work... It's up in the air at the moment... I can't wait to see what happens... And if I push this down just a little further, does it cause additional problems with the word wrap functionality that is not working as it is...</TD></TR>
------------------------------------------------------------------------------------------------------------------------
"Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened."
- Winston Churchill