天软金融分析.NET函数大全 > 数据仓库函数 > 向导函数 > N期

RefReportValue    

简述
当前时间ReportID向前推N年,返回ReportID-N时间点表达式 Exp指标值,与系统参数(股票)相关。
定义
RefReportValue(Exp:Expr;ReportID:integer;N:integer):real
参数
名称类型说明
ExpExpr函数表达式
ReportIDinteger报告期
Ninteger整数
返回real实数
  • 范例
    返回平安银行2015年年报营业收入额

    SetSysParam(pn_stock(),'SZ000001');
    return RefReportValue(@reportofall(46002,GetSysParam('DefaultRepID')),20161231,1);
    //返回:96163000000
相关