FinancialExpensesRatio
简述
财务费用比例(%)=财务费用/主营业务收入*100。
函数从合并利润分配表中取财务费用、主营业务收入,根据算法得到财务费用比例(%)【注1】。
FinancialExpensesRatio(ReportDate:Integer):Real
名称 | 类型 | 说明 |
---|
ReportDate | Integer | 整数,报告期。 |
返回 | Real | 实数,财务费用比例(%),百分数。 |
//指定2011年报,取万科A财务费用比例(%)
oV:=BackUpSystemParameters2();
setsysparam(pn_stock(),'SZ000002');
v:=FinancialExpensesRatio(20111231);
return v;
//结果:0.71
FinancialItemRatio