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
LDragoLDrago 

Opportunity Field forumla trouble

I want to generate a formula field that provides a discount of 30% from another field in an Opportunity. How do I do this in SalesForce? I created the field but need help creating the formula to compute this. Please help! Thank you

Larry

SporterSporter

Well if you want to custom field to be discounted and the overall total (after the discount is taken away) you can use the following formula:

 

 

Custom_Field__c - (Custom_Field__c * 0.3)

 

So this takes your field on opportunity (if its a custom, but you can use a stanard field also) and takes the 30% discount away from it and displays the value. (Would need to be a currency or number formula field)

 

skodisanaskodisana

Hi,

 

Create a Formual(Percentage) with decimal place of 2 like as below.

AnnualRevenue * 0.3/100

 

Thanks,

Kodisana

LDragoLDrago

Thanks so much!