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

Visualforce page with Render IF/AND and Dates
This is stumping me, I am pretty sure I am close, just can't seem to get this right today.
So, render this output, if Case.Requested Action = "This" and the Case.CreateDate <= 8/4/2014. Seems simple....
<td class="Table"><apex:outputLabel value="Chewbacca " rendered="{!IF(CONTAINS(Case.RequestedAction__c, "blah blah") & !IF(Case.Requested_Actvation_Date_Time__c <= DATE(2014,8,5)TRUE,False),False)}"/></td>
Currently getting:
Error: Syntax error. Missing ')'
Any suggestions?
So, render this output, if Case.Requested Action = "This" and the Case.CreateDate <= 8/4/2014. Seems simple....
<td class="Table"><apex:outputLabel value="Chewbacca " rendered="{!IF(CONTAINS(Case.RequestedAction__c, "blah blah") & !IF(Case.Requested_Actvation_Date_Time__c <= DATE(2014,8,5)TRUE,False),False)}"/></td>
Currently getting:
Error: Syntax error. Missing ')'
Any suggestions?
You are missing close bracket. Use below code
IF it helps you than please mark it as a solution and ENJOY APEX
All Answers
You are missing close bracket. Use below code
IF it helps you than please mark it as a solution and ENJOY APEX
From documentation: You can use && instead of the word AND in your Visualforce markup.