function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ministe2003ministe2003 

Bug in VisualForce IF?

Hi all,

I'm doing a simple if statement in my visualforce to display data in a column, choosing one of two fields if one is null (one will always be null out of the two).

 

this is what it looks like

 

<apex:column title="Certified For All" value="{!IF(ISNULL(CI.Certified_Installer_OLD__c),CI.New_Certified_Installer_Number__c, CI.Certified_Installer_OLD__c)}"  />

 But I get this error

 

 

Visualforce Error

Syntax error. Missing ')'

 I dont get it from the complier, just on the page.  The thing is, this works fine

 

 

<apex:column title="Certified For All" value="{!IF(1<2,1, 2)}"  />

So it cant be a brackets issue or that wouldnt work either.

 

 

 

Anyone got a clue what's wrong?  I'm querying the data so its not that.

 

Thanks!