Skip to main content
Mohankumar B 님이 #Data Management에 질문했습니다
Hi,

 

How to increment the number in custom Field when custom visualforce button is clicked.Anyone help me for this one.

 

Thanks.
답변 3개
  1. 2020년 9월 24일 오전 10:29
    Hi Mohankumar,

     

    Try to do this in your controller 

    count++;

    a = [Select id,yourCustomField from....];

    a.yourCustomField = count;

     

     
0/9000