知识库 > 金融建模 > 公用函数 > 扩展函数 > .Net扩展函数 > 财务分析 > 盈利能力

NetEquityReturnRatio    

简述
净资产收益率增长率(%) = (本期净资产收益率-上期净资产收益率)/abs(上期净资产收益率)*100。
净资产收益率=净利润/股东权益;
函数可以从合并利润分配表取出归属于母公司所有者的净利润,从合并资产负债表取出股东权益,根据算法可计算出净资产收益率增长率(%)。
定义

NetEquityReturnRatio(ReportDate:Integer):Real
参数

ReportDate:整数,报告期。

返回:实数,净资产收益率增长率(%)。
  • 范例:

    //指定2011年报,取万科A净资产收益率增长率(%)
    oV:=BackUpSystemParameters2();
    setsysparam(pn_stock(),'SZ000002');
    v:=NetEquityReturnRatio (20111231);
    return v;
    //结果:10.36

    参考
    NetEquityReturn  
相关