close

Ecommerce Profit Calculator

Purchase Price (₹)
Selling Price (₹)
Shipping Charges (₹)
Packaging Charges (₹)
RTO + Customer Returns + Other Loss (%)
Ads Cost (₹)
Promotion (%)
GST (%)
Commission (%)
"; if(profit >= 0){ html += "

Net Profit: ₹" + profit.toFixed(2) + "

"; }else{ html += "

Net Loss: ₹" + profit.toFixed(2) + "

"; } html += "

Profit Margin: " + margin + "%

"; document.getElementById("result").innerHTML = html; }
Scroll to Top