Copy the exact "Total fees" shown alongside your listing
₹
Selling price shown to customers on your platform dashboard
₹
Amount the platform deposits to your bank after deductions
₹
Pricing parameters
%
% of total cost · Default 25%
×
Standard 1.5× · Premium 2× – 3×
Your existing listing
₹
The price currently shown to customers
×
📊
Results · Live calculations
Updates as you type
Cost breakdown
Product / manufacturing—
Packaging—
Shipping / logistics—
Other charges—
Platform fee—
Total expense—
Revenue breakdown
Selling price (excl. GST)—
GST collected—
Bank settlement—
Net seller revenue—
Net profit—
Key ratios
Break-even selling price—
Gross margin on selling price—
Markup / ROI on total cost—
MRP printed on packaging—
Enter your costs to see viability assessment.
Google Sheets Auto-Send Setup
✓ Configured · ▼ View
1Open Google Sheets → create a new sheet named IBI Pricing Calculator
2Click Extensions → Apps Script → paste the Apps Script code below → click Deploy → New deployment → Web App → set access to "Anyone" → copy the Web App URL
3Paste the Web App URL in the field below → click Save URL
Apps Script code to paste:
function doPost(e) {
try {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName('IBI Pricing Calculator')
|| ss.insertSheet('IBI Pricing Calculator');
var data = JSON.parse(e.postData.contents);
// Write header row if sheet is empty
if (sheet.getLastRow() === 0) {
sheet.appendRow(data.headers);
sheet.getRange(1, 1, 1, data.headers.length)
.setFontWeight('bold')
.setBackground('#7c3aed')
.setFontColor('#ffffff');
sheet.setFrozenRows(1);
}
sheet.appendRow(data.values);
return ContentService
.createTextOutput(JSON.stringify({status:'ok'}))
.setMimeType(ContentService.MimeType.JSON);
} catch(err) {
return ContentService
.createTextOutput(JSON.stringify({status:'error', message:err.toString()}))
.setMimeType(ContentService.MimeType.JSON);
}
}
function doGet(e) {
return ContentService
.createTextOutput(JSON.stringify({status:'ok', message:'IBI Calculator endpoint active'}))
.setMimeType(ContentService.MimeType.JSON);
}
📋 Calculation History
0 / 24
No calculations saved yet. Fill in your inputs and click Save to History.