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

GrossProfit    

简述
销售毛利=主营业务收入-主营业务成本。
函数从合并利润分配表中取主营业务收入和主营业务成本,在根据算法就得到销售毛利【注1】。
定义

GrossProfit(ReportDate:Integer):Real
参数

ReportDate:整数,报告期。

返回:实数,销售毛利。
  • 范例:

    //指定2011年报,取万科A销售毛利
    oV:=BackUpSystemParameters2();
    setsysparam(pn_stock(),'SZ000002');
    v:=GrossProfit(20111231);
    return v;
    //结果:28554586198.55

    参考
    FinancialItem  
相关
FAQ/知识库链接