資產負債表效率比率(上)

使用 Python 進行財務預測

Victoria Clark

CGMA Financial Analyst

財務報表

使用 Python 進行財務預測

應收與應付

  • 先賣出,之後收款
    • debtors
  • 先購買,之後付款
    • creditors
使用 Python 進行財務預測

應收帳款天數比率

  • 從應收款收回需幾天
  • 比率越低越好

  • 公式:

    • $Debtor$ $Days$ = $\frac{EndingBalanceDebtors}{Sales}$ $x$ $DaysInFinancialYear$

 

ddays_ratio = (debtors_end/sales_tot) * 365
使用 Python 進行財務預測

應付帳款週轉天數(DPO)

  • 我們支付應付款需幾天
  • 比率越高越好

  • 公式:

    • $DPO$ = $\frac{EndingBalanceCreditors}{TotalCostOfGoodsSold}$ $x$ $DaysInFinancialYear$

 

dpo = (creditors_end/cogs_tot)*365
使用 Python 進行財務預測

一起來練習吧!

使用 Python 進行財務預測

Preparing Video For Download...