function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Diego OlveraDiego Olvera 

Count the option selected from a single picklist

Hi, good afternoon. 
I'm working with the following formula field: 
IF(ISPICKVAL (PickNope__c, "Opc1"), 1, 0)

Where it helps to count if the user selects "Opc1" then in a text field shows the result(1) and works cool, BUT when I select another option for example (Opc2) then in my text field shows(0).
I want to keep in that field the number (1) and if I select again (Opc1) then must be (2)...(3)...(4).

I want to know if there's an option to solve my problems or probably with a process builder. 

Thanks, 
Regards. 

Team NubesEliteTeam NubesElite
Hi Dlego,
I hope using process builder you can not acheive this. But you can achieve this through Java Script using On Change event.

Thank You
www.nubeselite.com

Developement | Training | Consulting

Please Mark this as solution if your problem resolved.
Diego OlveraDiego Olvera
Thanks for answering.
Yep that's what I was thinking to make a custom component, 
Regards. :)