You need to sign in to do that
Don't have an account?

Hi Team, Please help on the below request i am getting confuse which tool and what is the procedure have to use.
- Create a new field (Commission) on Opportunity object and it should automatically calculate the commission based on the below conditions:
- If Lead Source is Web and Amount is greater than 1,000 then the commission is 2% of the Amount.
https://help.salesforce.com/articleView?id=useful_advanced_formulas_commission.htm&type=5
As mentioned in the above article there are sample commissions formula fields that you can try checking.
Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.
Thanks.
The Exact Formula for your requirement is as follows.
IF(AND( ISPICKVAL(LeadSource,'Web'),Amount >1000), ((Amount*2)/100), 0)
The formula is tested successfully. Just let me know whether its completing your requirement or not.
Regards,
Akshay Shirkar