• brkandivy
  • NEWBIE
  • 24 Points
  • Member since 2010

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 18
    Replies

Trying to create a field update to pull data from a Picklist field from the Product2 object to a text field on the opportunity product object.  Have tried various things like single quotes vs. double quotes, and && or ||  not sure what else to try here.

 

Keep getting various syntax errors...

 

IF(ISPICKVAL(Product2.Family,"SNS Surveyor"),'SNS Surveyor’  ||

IF(ISPICKVAL(Product2.Family,"SNS Event Monitoring"),'SNS Event Monitoring'  ||

IF(ISPICKVAL(Product2.Family,"SNS Services"),'SNS Services', "")))

 

Error: Syntax error. Missing '

 



I have a multi-select picklist on the Account Object.  We want to see(reference) that field on the Opportunity object. 

 

Is there a workaround to do this since the multi-select can't be used in a formula field?

 

Thanks in advance for any help!!!!

I am trying to do more than one substitution in a field update formula and am having difficulty getting it correct.   This is what I have:

 

OR(Contains(Name ,'Duplicate -'), SUBSTITUTE(Name,"Duplicate -"),

     (Contains(Name ,' - Duplicate'), SUBSTITUTE(Name," - Duplicate"),"")))

 

All help is greatly appreciated.

 

Thanks

 

 

Not sure if this is even possible.  Is there a way to force entered data to change according to a rule or setting without making the user go back and make a change?  For instance:  User enters account name as 'St. Mary's Med Ctr of Chicago' upon insert the account name would automatically change to read 'Saint Mary's Medical Center of Chicago'.

 

This kind of haphazard abbreviations are causing so many duplicates.

I am trying to build a field update to update one field if two other custom fields match.  How can I write the formula to check if those two custom fields are equal?  Thanks in advance for any help!!