根据年度和财政年度(CRM)填充动态参数的SSRS表达式

时间:2017-07-17 11:51:10

标签: reporting-services ssrs-2008 ssrs-2012 ssrs-2008-r2 ssrs-tablix

如何在过滤器(下拉列表)中动态当前年份到过去5年的显示年度

如何动态财务年度到过去5财务年度显示年度过滤(下拉)

请查找附件屏幕截图。enter image description here

1 个答案:

答案 0 :(得分:1)

假设您没有可以使用的日期表,您可以执行类似这样的操作

usa.reduce((acc, current) => {
  const f = acc.find(c => c.year == current.year)

  if (f) {
    f.fifa = parseInt(f.fifa, 10) + parseInt(current.fifa, 10)
  } else {
    acc.push({
      year: current.year,
      fifa: parseInt(current.fifa, 10).toString()
    })
  }
  return acc

}, [])