You need to sign in to do that
Don't have an account?
Che SFDC
Need help with Formula field to evaluate blanks
Dear all, this may be really simple but I`m not able to figure it out. I have two Number fields "Agents__c" and "stations__c". I want formula field (# of TRE) which will help me to evaluate that if Agent__C is Blank, it will multiply the amount stations__c * 0.55. Similarly, if stations__c is Blank, it will multiply amount Agent__C * 0.55. If both are blank, it should be zero. Can someone please help me with appropriate formula?
I tried below formulas but it does not work. Formula works well on Agent__c but if Agent__c is Blank, and stations__c has value, it does not work
BLANKVALUE(BLANKVALUE(Agent__c, Section__c), 0) * 0.55
IF( NOT(ISBLANK(Agent__c)), Agent__c, IF( NOT(ISBLANK(Station__c)), Station__c, 0 ) ) * 0.55
I tried below formulas but it does not work. Formula works well on Agent__c but if Agent__c is Blank, and stations__c has value, it does not work
BLANKVALUE(BLANKVALUE(Agent__c, Section__c), 0) * 0.55
IF( NOT(ISBLANK(Agent__c)), Agent__c, IF( NOT(ISBLANK(Station__c)), Station__c, 0 ) ) * 0.55
If both are not blank im just multiplying both(assuming it is the requirement ), if that is not true, replace
Agent__c*stations__c with your desired value.
Hope it helps.,
thanks,
balaji
All Answers
If both are not blank im just multiplying both(assuming it is the requirement ), if that is not true, replace
Agent__c*stations__c with your desired value.
Hope it helps.,
thanks,
balaji