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
ArmanMArmanM 

Discount percentage custom field help

Hi, 

I need a custom discount percentage field that would be dependent on a custom picklist field. This picklist field is named "value full" with two options: 'yes' and 'no'. I want the discount field to be auto update to 100% if and when value full is yes otherwise don't update anything leave it blank for the user to fill in. 

How can I do this? 

Thanks, 
Arman
Best Answer chosen by ArmanM
Prateek Singh SengarPrateek Singh Sengar
Hi,
To achieve this you need to create a workflow rule with field update. The entry criteria of the workflow will be If Value Full is Yes and Discount not equal to 100. In the action create a field update that will update the field with 100%. Hope this  helps.