Skip to main content
I have created a custom field "Student Funding"  I would like it to auto populate 1 when I chose from custom picklist field "Funding Source" picklist " Student  

 

For example:

 

Funding Sourse: Student

 

Student Funding: 1 (auto populate)

 

I have attached a snapshot of the fields.

 

I need help creating a ispickvalue in a workflow rule

 

 
1 answer
  1. May 5, 2013, 8:11 AM
    You can achieve this by using a formula field.

     

    Create a field of type formula and return type text.

     

    Use the below formula in the formula definition.

     

    IF(ISPICKVAL( Funding_Source__c, "Student"),"1","")
0/9000