资产负债表效率比率 - 第1部分

Python 金融预测

Victoria Clark

CGMA Financial Analyst

财务报表

Python 金融预测

应收与应付

  • 先卖后收款
    • debtors
  • 先买后付款
    • creditors
Python 金融预测

应收账款周转天数

  • 从应收方收回款项所需天数
  • 比率越低越好

  • 公式:

    • $应收账款天数$ = $\frac{期末应收账款}{销售额}$ $x$ $会计年度天数$

 

ddays_ratio = (debtors_end/sales_tot) * 365
Python 金融预测

应付账款周转天数(DPO)

  • 向供应商付款所需天数
  • 比率越高越好

  • 公式:

    • $应付账款周转天数(DPO)$ = $\frac{期末应付账款}{销售成本总额}$ $x$ $会计年度天数$

 

dpo = (creditors_end/cogs_tot)*365
Python 金融预测

开始练习!

Python 金融预测

Preparing Video For Download...