Hi, Jeff.
I am new to Sage and OnChange scripting, etc. I used a variation of the scripting you have here to reflect my situation.
switch (this.value) {
case 'Introduction' :
oppo_certainty.value = '5';
break;
case 'Presentation' :
oppo_certainty.value = '25';
break;
case 'Quoted/Bid' :
oppo_certainty.value = '50';
break;
case 'Negotiated' :
oppo_certainty.value = '75';
break;
case 'Sold Open' :
oppo_certainty.value = '90';
break;
case 'Sold Closed' :
oppo_certainty.value = '100';
break;
I am looking to update the oppo_certainty when a value in the selection list for oppo_stage is chosen. (The stage is required, and to make it easy for the team, we want to update automatically.)
I am putting it in the OnChange box and nothing is happening.
Any wisdom on how I can fix this?
Thanks!