下面给你一个专注于“Shopee 定价公式”的完整套件,包含两种常用模式的核心公式、逐步实现方法,以及一个可直接落地的数值示例与模板文本,方便你直接拿来使用。
一、核心符号与定义
- Cost(成本) = COGS
- OtherCosts(其他成本)如包装、吊牌等
- ShippingCost(运费成本)
- MaterialSurcharge(材料附加费,可选)
- TotalCost = Cost + OtherCosts + ShippingCost + MaterialSurcharge
- PF = PlatformFeeRate(平台抽成)
- PayF = PaymentFeeRate(支付手续费)
- TaxRate(税率,含税/不含税的口径按区域自定)
- CT = CorporateTaxRate(企业所得税率,若需要税后利润)
- M = TargetMargin(目标毛利率,如 0.25 = 25%)
- D = DiscountRate(促销折扣率,若无设为 0)
二、两种常用定价模式的核心公式
模式A:含运费在价内
- PriceExclTax(不含税的商品基价):
P_excl_tax = TotalCost / (1 - PF - PayF - M)
- PriceInclTax(含税最终价):
P_incl_tax = P_excl_tax * (1 + TaxRate)
- ProfitBeforeTax(税前利润,单位为货币):
ProfitBeforeTax = P_excl_tax - TotalCost
- ProfitAfterTax(税后利润):
ProfitAfterTax = ProfitBeforeTax * (1 - CT)
模式B:运费单独显示/收取
- BasePriceExclTax(不含税的基础价,供运费单独叠加前的价格):
BasePriceExclTax = TotalCost / (1 - PF - PayF - M)
- FinalPriceExclTax(最终不含税价,考虑促销 Discount):
FinalPriceExclTax = BasePriceExclTax * (1 - D)
- FinalPriceInclTax(最终含税价):
FinalPriceInclTax = FinalPriceExclTax * (1 + TaxRate)
- RevenueAfterDiscount(促销后税前收入,若不含运费):
RevenueAfterDiscount = BasePriceExclTax * (1 - D)
- ProfitAfterDiscountBeforeTax(促销后税前利润):
ProfitAfterDiscountBeforeTax = RevenueAfterDiscount - TotalCost
- ProfitAfterTax(税后利润):
ProfitAfterTax = ProfitAfterDiscountBeforeTax * (1 - CT)
三、逐步实现要点(Excel/Google Sheets 通用)
1) 输入区(请用你自己的数据替换数值)
- Cost
- OtherCosts
- ShippingCost
- MaterialSurcharge
- PF
- PayF
- TaxRate
- CT
- M
- D
2) 计算区(两种模式的结果)
- TotalCost = Cost + OtherCosts + ShippingCost + MaterialSurcharge
- 模式A(含运费在价内)
- P_excl_tax = TotalCost / (1 - PF - PayF - M)
- P_incl_tax = P_excl_tax * (1 + TaxRate)
- ProfitBeforeTax = P_excl_tax - TotalCost
- ProfitAfterTax = ProfitBeforeTax * (1 - CT)
- 模式B(运费单独显示/收取)
- BasePriceExclTax = TotalCost / (1 - PF - PayF - M)
- FinalPriceExclTax = BasePriceExclTax * (1 - D)
- FinalPriceInclTax = FinalPriceExclTax * (1 + TaxRate)
- RevenueAfterDiscount = BasePriceExclTax * (1 - D)
- ProfitAfterDiscountBeforeTax = RevenueAfterDiscount - TotalCost
- ProfitAfterTax = ProfitAfterDiscountBeforeTax * (1 - CT)
3) 实操提示
- 区分含税与不含税口径:不同地区税制不同,请按所在区域实际税率设置 TaxRate。
- 促销要与 Margin 配合:DiscountRate 不能长期超过目标毛利,避免利润被侵蚀。
- 监控与调整:定期对毛利、净利、转化率、广告投入等进行回看,动态微调 Margin 与 Discount。
- 区域适应性:台湾、马来西亚、泰国等区域的费率、税制不同,请在模型中把 PF、PayF、TaxRate、CT 替换为本区域的实际值。
四、简短数值示例(通用数值,便于理解)
假设:
- Cost = 100
- OtherCosts = 5
- ShippingCost = 10
- MaterialSurcharge = 0
- TotalCost = 115
- PF = 0.08
- PayF = 0.03
- TaxRate = 0.07
- CT = 0.25
- M = 0.25
- D = 0.15
模式A(含运费在价内)
- P_excl_tax = 115 / (1 - 0.08 - 0.03 - 0.25) = 115 / 0.64 ≈ 179.69
- P_incl_tax = 179.69 * 1.07 ≈ 192.25
- ProfitBeforeTax = 179.69 - 115 ≈ 64.69
- ProfitAfterTax = 64.69 * (1 - 0.25) ≈ 48.52
模式B(运费单独显示,Discount 0.15)
- BasePriceExclTax = 179.69
- FinalPriceExclTax = 179.69 * (1 - 0.15) ≈ 152.74
- FinalPriceInclTax = 152.74 * 1.07 ≈ 163.50
- RevenueAfterDiscount = 179.69 * (1 - 0.15) ≈ 152.74
- ProfitAfterDiscountBeforeTax = 152.74 - 115 ≈ 37.74
- ProfitAfterTax = 37.74 * (1 - 0.25) ≈ 28.31
五、可直接使用的模板文本(CSV/复制到表格的简易版本)
- 作为快速起步的输入模板,下面是一组可直接粘贴到表格中的输入项(数值请替换为你自己的数据):
Cost,100
OtherCosts,5
ShippingCost,10
MaterialSurcharge,0
PF,0.08
PayF,0.03
TaxRate,0.07
CT,0.25
M,0.25
D,0.15
计算区的要点公式(请在表格相应单元格输入):
TotalCost = Cost + OtherCosts + ShippingCost + MaterialSurcharge
P_excl_tax = TotalCost / (1 - PF - PayF - M)
P_incl_tax = P_excl_tax * (1 + TaxRate)
BasePriceExclTax = TotalCost / (1 - PF - PayF - M)
FinalPriceExclTax = BasePriceExclTax * (1 - D)
FinalPriceInclTax = FinalPriceExclTax * (1 + TaxRate)
RevenueAfterDiscount = BasePriceExclTax * (1 - D)
ProfitAfterDiscountBeforeTax = RevenueAfterDiscount - TotalCost
ProfitAfterTax = ProfitAfterDiscountBeforeTax * (1 - CT)
六、需要我帮你定制吗?
- 如果你愿意,我可以基于你所在区(如 Shopee 台湾)、品类和成本结构,给你:
- 一个完整的可下载 Excel/Google Sheets 模板,带两种模式的自动计算与看板
- 或者一个可直接复制使用的公式清单,方便你直接在现有表格中套用
告诉我你打算面向的 Shopee 区域、品类、成本结构(COGS、包装费、运费等)以及是否需要包含 DiscountRate 的计算,我就给你定制一份正式可用的模板或公式清单。