Activity › Forums › Salesforce® Discussions › How do I create a table with more than one column from a single list? Tagged: Apex DataTable, Apex OutputText, Apex Repeat, Data, HTML, List, Salesforce Visualforce Page Salesforce® Discussions How do I create a table with more than one column from a single list? Posted by Ravi on April 30, 2016 at 6:26 PM How do I create a table with more than one column from a single list? Ajit replied 9 years, 11 months ago 2 Members · 1 Reply Apex DataTableApex OutputTextApex RepeatDataHTMLListSalesforce Visualforce Page 1 Reply Ajit Member May 24, 2016 at 9:37 AM Hey Ravi, Its very simple, but need to see your vf page code because if you are using Data table then this can be done but we can do this by using apex:repeat and by using HTML tags. <table> <tr> <apex:repeat value=”{!testList}” var=”tc” /> <td> <apex:outputText value=”{!tc.test1}”/><br /> <apex:outputText value=”{!tc.test2}”/><br /> <apex:outputText value=”{!tc.test3}”/><br /> </td> </apex:repeat> </tr> </table> Log In to reply. Public All Members My Connections Only Me PublicAll MembersMy ConnectionsOnly Me Public All Members My Connections Only Me