Results to Table

I have the relevance returning the correct results but i’m having trouble outputting it to a table. I’m not sure what i’m missing. Would appreciate any help. Thanks!

(html "<table id=resultsTable class=sortable>" & html ("<th>Computer Name</th><th>Last Report time</th><th>Operating System</th><th>Fixlet</th>") & 
(it) & html "</table>"

) of concatenations of trs of (

td of (item 0 of it) &
td of (item 1 of it) &
td of (item 2 of it) &
td of (item 3 of it)

) of (

names of it, 
last report time of it, 
operating system of it, 
(names of relevant fixlets whose (display name of site of it is contained by "Patches for Windows | Updates for Windows Applications" AND fixlet flag of it AND (category of it = "Security Update" OR category of it = "Security Hotfix") AND name of it does not contain "Superseded" AND name of it does not contain "CORRUPT")  of it) 

) of members of bes computer groups whose (name of it = "<GROUP 1>" or name of it = "<GROUP 2>")

Change all occurrences

td of (item 0 of it)

and similar to

td of (item 0 of it as string)

Yup, that did the trick. Thanks!