I got a UDT created without any problem. It shows ok with the predefined xls settings. All I want to do is have the header a certain background color and column size. I know how to do it in html, so I Generate New xls file. I read the whole manual. Problem is that I get a header before every new record. This is how my code looks:
<tr border="1" cellspacing="0" cellpadding="3" class="normalbold" bgcolor="#ffff99">
<th></th><th>Date</th><th>Meeting Chair</th><th>Meeting Agenda</th><th>Presentation</th><th>Action Items</th>
</tr>
<tr border="1" cellspacing="0" cellpadding="3" class="normal">
<td>[UDT:EditLink]</td>
<td>[Date_UDT_Value]</td>
<td>[Meeting Chair]</td>
<td>[Meeting Agenda]</td>
<td>[Meeting Presentation]</td>
<td>[Action Items]</td>
</tr>
I know this is simple but I cannot figure it out.
thanks
Miriam