Hi all,
I am trying to create an html table, and I currently have it converting into a PDF using OneDrive for Business. I am trying implement a Sharepoint list value; however, it is not working correctly.
Currently I have:
concat('<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h2> FG Form Summary </h2>
<table style ="width:100%">
<tr>
<th>Project Title</th>
<th>',item()?['Title'],'</th>
</tr>
</table>
</body>
</html>')This does create an html table; however, the value for " item()?['Title'] " is blank. This name does match the Sharepoint item I am trying to call (when I hover over the name), and the value I am testing is not blank.
Any ideas on how to get this " item()?['Title'] to properly display the contents of my Sharepoint item named "Title"?