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
Nicole KloetNicole Kloet 

Change the calculating fields for Amount on Opportunity Level

Is it possible to change the fields that the Amount field on Opportunity level calculates on?  (Default is the Quantity and Sales Price from the product brick.)

 
sharathchandra thukkanisharathchandra thukkani
Amount field is a standard field and if there are products asssociated to the opportunity it will get the price from products. If no products associated with the Opportunity then you can modify the Amount field. You cannot stop happening this. If you want to do this you need to create custom field and use it.
Rakesh51Rakesh51
The TotalPrice (UnitPrice X Quantity) across all Opportunity line items rolls up to the Opportunity Amount. If you wanted to affect the TotalPrice on the Opportunity Line Items, you could update the UnitPrice with the optional extras so that they are factored into the TotalPrice. This would then roll up to the Opportunity Amount.

Hopefully that makes sense.