You need to sign in to do that
Don't have an account?

How do I show only the leftmost 500 characters of a field in a pageBlockTable?
This is the line I'm trying to fix:
This doesn't work:
Thanks
<apex:column headerValue="Status" headerClass="headerStyle" value="{!con.Status__c}" />
This doesn't work:
<apex:column headerValue="Status" headerClass="headerStyle" value="{!LEFT(con.Status__c,500)}" />
Thanks
Any ideas?