• Nales
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 6
    Replies

When Task Field Type “Outgoing Call” is selected, then validate that checkbox “Hit” or “Miss” is selected.

 

Dependencies between the 2 fields won't work. Thanks

  • May 28, 2009
  • Like
  • 0
Try to get a process in place to auto-populate the US country code based if reps place a US state. No syntax errors however not placing "United States" in the field. Any extra eyeballs trouble shoot this? Thanks in advance.

AND(
OR(BillingState="AL:AK:AZ:AR:CA:CO:CT: DE: DC:FL:GA:HI:ID:"&
"IL:IN:IA:KS:KY:LA:ME:MD:MA:MI:MN:MS:MO:MT:NE:NV:NH:"&
"NJ:NM:NY:NC:ND: OH: OK: OR: PA: RI:SC:SD:TN:TX:UT:VT:VA:"&
"WA:WV:WI:WY" ),

LEN(BillingCountry) = 0,
NOT
CONTAINS ("United States", BillingCountry)
)
  • March 13, 2009
  • Like
  • 0

 Hi...trying to make a picklist field required when the standard 'TYPE' field (also a picklist field) is populated with 'Vendor'.  If 'Vendor' is selected, then I need to have the 'Vendor Group' field required.

 

 

AND(


    ISPICKVAL( Type ,"Vendor"),
    ISPICKVAL( Vendor_Group__c ) (am I missing something here?)

)

 

I tried the ISNULL function, but it keeps giving me an error that it's a picklist.

 

Thanks...

  • September 17, 2009
  • Like
  • 0