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

I want to control expression of text on a PDF VF Page based on result of specific fields. I added: <If{!DSP_eval__c.xvb5__c} Not=’x’> but clearly this is not correct. Any suggestions?
I created a PDF VF page to show the results of a custom object, a staff evaluation form. On occassion the score fields contain 'x' which signifies that the skill is not appliicable to the person being evaluated. Currently all these skills show on the PDF with the X but I would like to onlly show the skill if the score is not x. I tried - <If{!DSP_eval__c.xvb5__c} Not=’x’> - but cleraly this is not correct. Any suggestions?
<table border="1" cellspacing="0" width="100%" align="center" style="height:150 px; font-size:12px; font-weight:normal">
<tr style="text-align:left">
<td style="text-indent:10px; font-weight:normal"> Skill 5: Supports the self direction of services. </td>
<td style="text-align:center; font-weight:normal ">{!DSP_eval__c.xvb5__c}</td>
</tr>
</table>
I was able to suppress the table format for this line of the table by using <td><table rednered="if DSP_eva__c.xvb5__c not x"></table></td> but could not suppress the expression of the text. Also, the addition of this code suprreseed the table format regardless of the field value.