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
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.