计算销售额与销售成本

Python 金融预测

Victoria Clark

CGMA Financial Analyst

计算销售额与销售成本

图片说明

Python 金融预测

计算销售额

销售额 = 收入 = 营收 = 营业额

所需数据:

  • 单位销售价 sp_unit
  • 销售数量 units

复杂情况

  • 折扣(折后售价)d_sp
  • 赊销
  • 销售组合 sp_1 vs sp_2

  测试

Python 金融预测

计算销售成本(COGS)

所需数据:

  • fixed_costs
    • 与产量无关的成本
  • Variable_costs_per_unit
    • 单位产量对应的变动成本
  • 期初存货 inv_ob
  • 期末存货 inv_cb

    图片说明

Python 金融预测

毛利告诉了我们什么?

  • 利润率(%)
    • gp_margin
  • 分析核心产品的盈利能力
  • 计算保本点
break_even = fixed_costs/(sp - variable_costs)
Python 金融预测

让我们来练习!

Python 金融预测

Preparing Video For Download...