天软金融分析.NET函数大全 > 金融函数 > 财务分析 > 盈利能力

GrossProfit    

简述
销售毛利=主营业务收入-主营业务成本。
函数从合并利润分配表中取主营业务收入和主营业务成本,在根据算法就得到销售毛利【注1】。
定义
GrossProfit(ReportDate:Integer):Real
参数
名称类型说明
ReportDateInteger整数,报告期。
返回Real实数,销售毛利。
  • 范例

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

    return v;
    //结果:28554586198.55
    参考
    FinancialItem 
相关