For I've seen in other posts how to pull multiple columns from a SharePoint list by using a calculated column. Eg., =CONCATENATE([Title],",",[First Name], ",", [Last Name])
I would like the presentation to be a table via:
=CONCATENATE("<table><tr><td>[Title],"</td><td>",[First Name], "</td><td>", [Last Name],"</td></tr></table>")
Is there a way for the form to render this HTML? XMLEncode doesn't work in the List column name field to pull.
Or is there another method, via javascript, to replace/render the DOM when this is run?