Hi out there
Iam building HTML to create a pdf file , i aam using Concat
Concat(skolgallery.AllItems;"
<tr font size="&"2"&">
<td font size="&"2"&">" & Skola & "</td>
An my result is only the first row in the table .
But hard coded tables everything is in the pdf file .
Is it any stop to use tables looping out whe in comes to create PDF file .
My result PDF file
The first table Skola is my database driven and last is my hard coded .
Solved! Go to Solution.
Your formula should be:
Concat(skolgallery.AllItems;
"<tr font size=2>
<td font size=2>" & Skola & "</td>
</tr>"
)
You need to conclude your TR in your formula.
I hope this is helpful for you.
Your formula should be:
Concat(skolgallery.AllItems;
"<tr font size=2>
<td font size=2>" & Skola & "</td>
</tr>"
)
You need to conclude your TR in your formula.
I hope this is helpful for you.
Here is the code in my app
<table>
<tr>
<th>Skola </th>
<th >Program</th>
</tr>
</tr>
"&
Concat(skolgallery.AllItems;"
<tr>
<td>" & Skola & "</td>
<td>" & Program & "</td>
</tr>")
&"
</table>
Screendump inside the app on my table
<table>
<tr>
<th>Skola </th>
<th >Program</th>
</tr>
"&
Concat(skolgallery.AllItems;
"
<tr>
<td>" & Skola & "</td>
<td>" & Program & "</td>
</tr>
")
&"
</table>
Thank you sir , a little put int the right direction and viola one <tr> to much and problem solved .
🙂