Cash flow
Today,we learn about the cash flow.
Cash flow summary:
1.The cash flow identity:(现金恒等式)
cash flow from assets = cash flow ro creditors (bondholders) +cash flow to stockholders (owners)
What it reflect is the fact that a firm generates cash through its various activities, and that cash either is used to pay creditors or else is paid out to the owner of the firm.
2.Cash flow from assets:(源自资产的现金流)involves three components
cash flow from assets = operating cash flow - net capital spending - change in net working capital(NWC)
where,
经营性现金流operating cash flow = earning before interest and taxes(EBIT) + depreciation -taxes
Operating cash flow refers to the cash flow that results from the firm's day-to-day activities of producing and selling.Expenses associated with the firm's financing of its assets are not included since they are not operating expenses.Operating cash flow is an important number because it tells us,on a very basic level,whether or not a firm's cash inflows from its business operation are sufficient to cover its everyday cash outflows.For this reason,a negative operating cash flow is often a sign of trouble.
To calculate operating cash flow(OCF),we want to calculate revenues minus costs,but wo don't want to include depreciation since it's not a cash outflow,and wo don't want to include interest because it's a financing expense.We do want to include taxes,because taxes are,unfortunately, paid in cash.
资本性支出net capital spending = ending net fixed assets - beginning net fixed assets + depreciation
Net capital spending is just money spent on fixed assets less money received from the sale of fixed assets.
净营运资本的变化change in NWC = ending NWC - beginning NWC(nwc = current assets - current liabilities)
3.cash flow to creditors (bondholders)流向债权人的现金流
cash flow to creditors = interest paid(给) - net new borrowing(收)
4.cash flow to stockholders (owners)流向股东的现金流
cash flow to stockholders = dividends paid(给) - net new equity raised(收)
Cash flow的更多相关文章
- 财务报表 > 现金流表的直接法,间接法,Cash Flow from Operating Activites
经营活动现金流量 Cash Flow from Operating Activites 是指企业投资活动和筹资活动以外的所有的交易和事项产生的现金流量.它是企业现金的主要来源. 1. 直接法经营活动现 ...
- The finnacial statements,taxes and cash flow
This chapter-2 we learn about the the financial statements(财务报表),taxes and cash flow.We must pay par ...
- NetSuite Chinese Finance Reports
NetSuite has a strong report customization application. The standard finance reports has a different ...
- 【转】How to hire——创业公司应该如何招人
How to hire After startups raise money, their next biggest problem becomes hiring. It turns out it’ ...
- Software Engineering: 3. Project planning
recourse: "Software Engineering", Ian Sommerville Keywords for this chapter: planning sche ...
- business knowledge
Finance knowledge Trading---At the core of our business model is Trading, which involves the buying ...
- investopedia level 2
Mispricing can be explained by the sum of the two components: true mispricing and estimation errorVe ...
- fr
8.3 credit sales(bad debt , ar) method1:direct write off method2:allowance method for bad debt allow ...
- PMP考试--成本管理中常用的概念
如果你对项目管理.系统架构有兴趣,请加微信订阅号"softjg",加入这个PM.架构师的大家庭 净现值(NPV) Net Present Value 在项目计算期内,按行业基准 ...
随机推荐
- Setup Factory 程序打包
1.检测是否已安装 在On Startup中写入如下代码: result1=Registry.DoesKeyExist(HKEY_LOCAL_MACHINE, "Software\\sohe ...
- [leetcode]_Reverse Integer
经历了三道树的题后,完全崩溃中,急需一道非树图的题来挽救信心. 题目:反转数字.input : 123 , output : 321. 思路:直接,没什么好说的. 自己代码:很龊,有大量的冗余信息,还 ...
- oracle函数和存储过程示例
Function: --为了使产生的uuid符合rfc 4122的标准(http://tools.ietf.org/html/rfc4122),例如:a8f662b8-6e7a-13fe-e040-9 ...
- Centos6.5环境下安装SVN 整合Apache+SSL
弄了两天,终于在服务器上初步搭建起来了SVN(版本1.8). 服务器系统:Centos6.5 64位,搭建过程中全部采用源码编译安装(configure/make/make install),推荐大家 ...
- php变量那些事:学习过程中遇到的关于php变量的有趣的问题(不断发现不断更新)
不断发现……,不断更新……,不断寻找答案……例子的测试环境:php5.3,win7,64位Num1:<?$a=array(1,2,3,4,5,6); $b=$a;$m=memory_get_us ...
- 【转】Spark性能测试报告
RDD可以很好地适用于支持数据并行的批量分析应用,包括数据挖掘,机器学习,图算法等,因为这些程序通常都会在很多记录上执行相同的操作.RDD不太适合那些异步更新共享状态的应用,例如并行web爬行器.因此 ...
- JLink V8初始化exynos4412脚本
/** ****************************************************************************** * @author Maox ...
- 第十六章 调试及安全性(In .net4.5) 之 调试程序
1. 概述 本章内容包括 如何选择合适的构建类型.创建和管理编译指令.管理程序数据文件(pdb)和指令. 2. 主要内容 2.1 构建类型 .net中默认的两种生成模式是 发布(Release)模式 ...
- 第六章 管理类型(In .net4.5) 之 创建类型
1. 概述 本章内容包括 C#5中如何更好的创建类型以及如何扩展现有类型. 2. 主要内容 2.1 如何选择类型 C#类型系统包括三种类型:值类型.引用类型.指针类型.(指针类型用于非托管代码,很少使 ...
- Huffman树的编码译码
上个学期做的课程设计,关于Huffman树的编码译码. 要求: 输入Huffman树各个叶结点的字符和权值,建立Huffman树并执行编码操作 输入一行仅由01组成的电文字符串,根据建立的Huffma ...