I have a ui only field that has a formula that returns true false. One of my checks is looking to see if the field is not null. When I inspect the model on the page the null check is not working because actually Salesforce did not return a field to check with to begin with. So how can I check if the field even exists? IF({{RPS_External_Transfer_Amount__c}} >= 20000000,true,IF({{RPS_Expected_Number_of_Participants__c}}>=1000,true,IF({{RPS_Expected_Number_of_Participants__c}} < 10 && {{RPS_External_Transfer_Amount__c}} >= 40000 && ({{RPS_Deposit_Based_Commission_First_Year__c != null }} && {{RPS_Deposit_Based_Commission_Renewal_Yrs__c != null }} && {{RPS_Deposit_Based_Commission_Transfer__c != null }}),true,IF({{RPS_MVE_Amount__c}}>=100000 || ({{RPS_MVE_Amount__c }} > {{RPS_External_Transfer_Amount__c}} * 0.05) ,true,false))))
Question
How can you check for null and or if the field exists in a UI only formula field
This topic has been closed for replies.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.