How to Calculate Commission in Excel?, calculate commissions, commissions, commissions payment, if statement, microsoft excel, excel, functions,
if we learn how to bring out commission in excel then we can make any sheet for office. This will be very helpful for marketing management people. Team leaders, MIS operators etc.
How to Calculate Commission in Excel? |
To do this we will use a table which will contain 5 headings in columns i.e.
- Name
- Basic Salary
- Sales Amount
- Commission
- Total Pay
Now we will use
Nested IF to calculate COMMISSION
Commission Calculation Criteria are as Follows:
- Sales Amount is Less than 150000 then 10%
- Sales Amount is Greater than or Equal to 150000 and less than 350000 then 15%
- Sales Amount is Greater than 350000 then 20%
Now As per the Template we will use the following formula to calculate commission:
=IF(D6<150000,D6*10%, IF(D6>=150000,D6*15%,IF(D6>35000,D6*20%)))
And all Done.
Drag the formula down and we will get the result in every cell.
How to calculate TOTAL PAY:
Its very simple, for this we have to add the Basic salary and Commission, so the formula will be
=c6+E6
Now Drag it down and we will get the results.
So in this example of Commission calculation we have learned that how to do Nesting of IF condition.
एक्सेल में कमीशन की गणना कैसे करें?
ऐसा करने के लिए हम एक तालिका का उपयोग करेंगे जिसमें 5 शीर्षक होंगे अर्थात
- नाम
- मूल वेतन
- बिक्री राशि
- कमीशन
- कुल वेतन
अब हम प्रयोग करेंगे
कमीशन की गणना करने के लिए नेस्टेड IF
कमीशन गणना मानदंड इस प्रकार हैं:
- बिक्री राशि 150000 से कम है तो 10%
- बिक्री राशि 150000 से अधिक या उसके बराबर है और 350000 से कम है तो 15%
- बिक्री राशि 350000 से अधिक है तो 20%
अब टेम्पलेट के अनुसार हम कमीशन की गणना करने के लिए निम्नलिखित सूत्र का उपयोग करेंगे:
=IF(D6<150000,D6*10%, IF(D6>=150000,D6*15%,IF(D6>35000,D6*20%)))
और सब हो गया।
सूत्र को नीचे खींचें और हमें हर सेल में परिणाम मिलेगा।
कुल वेतन की गणना कैसे करें:
यह बहुत आसान है, इसके लिए हमें बेसिक सैलरी और कमीशन को जोड़ना होगा, तो यह फॉर्मूला होगा
=c6+E6
अब इसे नीचे खींचें और हम परिणाम प्राप्त करेंगे।
तो कमीशन कैलकुलेशन के इस उदाहरण में हमने सीखा कि IF कंडीशन की Nesting कैसे करें।
अब आप कमीशन से सम्बन्धी कोई भी sheet बना सकते हैं |
How to Calculate Commission in Excel?, calculate commissions, commissions, commissions payment, if statement, microsoft excel, excel, functions.
Comments
Post a Comment