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
EtaussigEtaussig 

ISBLANK, NOT

I am trying to wite a formula which populates a field when another field isn't blank:

 

if GERMAN_TITLE_C  is not blank, then FIELD B = ENGLISH_TITLE_C, else Null

 

This is what I started with:

 

IF(NOT(BLANKVALUE(German_Title__c , English_Title__c, null)))

 

This is the error message:

Error: Incorrect number of parameters for function BLANKVALUE(). Expected 2, received 3

 

Does anyone have any ideas?  Thanks!

Best Answer chosen by Admin (Salesforce Developers) 
shillyershillyer

Try this instead:

 

 

IF(German_Title__c <> "", English_Title__c, NULL)

 

Hope that helps,

Sati

 

All Answers

shillyershillyer

Try this instead:

 

 

IF(German_Title__c <> "", English_Title__c, NULL)

 

Hope that helps,

Sati

 

This was selected as the best answer
EtaussigEtaussig
Perfect!  Thanks so much.