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

NOT( ISPICKVAL( in IF( statement in formula help
I am trying to write a custom formula field. I am trying
IF(
NOT(
ISPICKVAL( Picklist_Item__r.Type = "Individual"),
Desired_Output__c,
Else_Desired_Output__c
))
The error I'm getting is that a ) is missing but it highlights a ,
Thanks!
IF(
NOT(
ISPICKVAL( Picklist_Item__r.Type = "Individual"),
Desired_Output__c,
Else_Desired_Output__c
))
The error I'm getting is that a ) is missing but it highlights a ,
Thanks!
IF( ISPICKVAL( AccountSource ,'Web'),Site, Sic )
replace the fields
Thanks,
pRAMODH.
All Answers
there is no true or false values in your formula
Could you please explain what exactly you want.
Thanks,
pRAMODH.
if it's true then output field: Custom__c
if it's false then output field: Other__c
IF( ISPICKVAL( AccountSource ,'Web'),Site, Sic )
replace the fields
Thanks,
pRAMODH.
Hi ,
The if statement syntax is :
IF(logical_test, value_if_true, value_if_false)
I thank the formula should be like this:
IF(NOT(ISPICKVAL( Picklist_Item__r.Type = "Individual")),Desired_Output__c ,Else_Desired_Output__c)
Thanks,
B.karunakar
Thanks!!