• MrD
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I have put together several Data Validation rules for a Custom Object and I want some of the rules to function for specific Record Types. The Data Validation rules that I have created function over all the Record Types that have the required fields and I need to know how to write the formula to apply the rules to specific Records Types.

Below is one of the Validation Rules that I need for a specific record:

Error Condition Formula:
AND (
OR (
LEN (SOW_PO__c )>0),
ISNULL( SOW_Amt__c )
)
  • March 21, 2007
  • Like
  • 0
As per the title,

I have a picklist (ie. stage) and want users to select a multipicklist item when the stage is set to say LOST.

I get a NOT APPLICABLE on the multipicklist field when i enter the page?

Am i doing something wrong?

Another method i thought was to use field validation so that when the stage is changed to 'LOST'
the length of the multipicklist cannot be 0 or   ISNULL(picklist)


does any body know how to get around this and apply some type of validation on the field?
ie. there could be multiple reasons why the opportunity was lost.

cheers, JT
I have put together several Data Validation rules for a Custom Object and I want some of the rules to function for specific Record Types. The Data Validation rules that I have created function over all the Record Types that have the required fields and I need to know how to write the formula to apply the rules to specific Records Types.

Below is one of the Validation Rules that I need for a specific record:

Error Condition Formula:
AND (
OR (
LEN (SOW_PO__c )>0),
ISNULL( SOW_Amt__c )
)
  • March 21, 2007
  • Like
  • 0