Here is the code for the confirmation page I am working on:
"<h3>Confirmation of Conference Room Booking Request</h3>" &
"<table width='100%'>" &
"<tr>
<td> Requestor: </td>" & User().FullName &
"</tr>" &
"<tr>
<td> Event Name: </td> "& DataCardValue125 &" </td>
</tr>" &
"<tr>
<td> Event Date: </td>" & DataCardValue2 &" </td>
</tr>" &
"</table> <br>" &
"<strong> Items: </strong>" &
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>Room Location</th><th> Description of AV Needs </th><th> Account Number </th>
</tr>
<tr>" &
Concat('Conference Room Booking',
"<td>" & ConferenceRoom & " </td>
<td>" & DataCardValue229 & " </td>
<td>" & DataCardValue232 & " </td>","</tr><tr>") &
"</table>"
However, I noticed that the Requestor, Event Name, and Event Date values are all on one row. Those values should be to the right of "Requestor:", "Event Name:", "Event Date:",
Also the table should only one row of data instead of repeating. Please help!
Solved! Go to Solution.
Hi @Anonymous
This might be closer to what you're looking for....
"<h3>Confirmation of Conference Room Booking Request</h3>" & "<table width='100%'>" & "<tr><td> Requestor: </td><td>" & User().FullName & "</td></tr>" & "<tr> <td> Event Name: </td><td>"& DataCardValue125 &" </td> </tr>" & "<tr> <td> Event Date: </td><td>" & DataCardValue2 &" </td> </tr>" & "</table> <br>" & "<strong> Items: </strong>" & "<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" & "<tr style='background-color:#efefef'> <th>Room Location</th><th> Description of AV Needs </th><th> Account Number </th> </tr> <tr>" & "<td>" & ConferenceRoom & " </td> <td>" & DataCardValue229 & " </td> <td>" & DataCardValue232 & " </td></tr>" & "</table>"
hi @Anonymous
html format is incorrect you can try below html code. Please remove test values and update with actual datacardvalues.
"<h3>Confirmation of Conference Room Booking Request</h3><Table width='100%'><tr><td> Requestor: </td> <td>test </td> </tr><tr><td> Event Name: </td> <td>test</td></tr><tr><td> Event Date: </td> <td>test </td></tr></table> <br> "
Hi @Anonymous
This might be closer to what you're looking for....
"<h3>Confirmation of Conference Room Booking Request</h3>" & "<table width='100%'>" & "<tr><td> Requestor: </td><td>" & User().FullName & "</td></tr>" & "<tr> <td> Event Name: </td><td>"& DataCardValue125 &" </td> </tr>" & "<tr> <td> Event Date: </td><td>" & DataCardValue2 &" </td> </tr>" & "</table> <br>" & "<strong> Items: </strong>" & "<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" & "<tr style='background-color:#efefef'> <th>Room Location</th><th> Description of AV Needs </th><th> Account Number </th> </tr> <tr>" & "<td>" & ConferenceRoom & " </td> <td>" & DataCardValue229 & " </td> <td>" & DataCardValue232 & " </td></tr>" & "</table>"
This is perfect! Thank you very much!!
You're welcome!
User | Count |
---|---|
139 | |
132 | |
75 | |
72 | |
68 |
User | Count |
---|---|
214 | |
199 | |
64 | |
62 | |
54 |