Skip to main content
Trying to create a formula field that will calculate a total number of current members by using values in a picklist field.

 

If  type of member is complete,advanced,core,honorary give a value of 1

 

Any help on how to set this up is appreaciated.

 

Thanks in advance!!
3 respuestas
  1. 2 nov 2011, 15:50
    Here you go

     

    CASE(MemberType__c,

     

    "complete", 1 ,

     

    "advanced", 1,

     

    "core", 1,

     

    "honorary", 1,

     

    0) 

     

    Then create a Rollup Summary field that returns the SUM of your Formula Field result.
0/9000