Skip to main content
I would like to create a text formula field to show a message only if another currency field has a value in it. 

 

We have the field Performance Increase which we manually enter a $$ figure in for eligible staff. If this field has a value in it, I would like another field to display the message "Increase based on previous performance". If the Performance Increase  field is blank, this new formula field should also be blank. 

 

I tried using IF(NOT(ISBLANK(Performance increase, "Message",""))) but received errors. Formulas are not my forte :| 

 

Is someone able to tell me where I've gone wrong (and why you did it the way you did would be greatly appreciated!)

 

Cheers

 

Rob
16 answers
  1. May 31, 2021, 4:55 AM
    Hi Rob, 

     

    You have the right idea, we just need to fix the syntax. Let's try:

     

    IF(ISBLANK(Performance_increase__c), null, "Message")
0/9000