矩阵逐年百分比计算

Posted

技术标签:

【中文标题】矩阵逐年百分比计算【英文标题】:Matrix year to year percentage calculation 【发布时间】:2017-08-04 14:39:27 【问题描述】:

寻找一种方法来计算 s-s-rs 矩阵的年增长率。例如。对于 2017 年 5 月,它会做 - (May-2017-May2016)/May2016。

附上截图。单位是一列。我在数据中使用运行值函数。

行组-类型 列组-日期

谢谢。

示例

【问题讨论】:

在s-s-rS中可以这样做吗? 【参考方案1】:
Below is the similar solution of your problem -
Following are the tables and data used for report creation-
create table dslocation
(
locationId int
 ,    locationName varchar(20)
  ,   mmpremium int
  , sspremium int
)
INSERT INTO dslocation
VALues (1, 'SANDY', 1000,'')
,(2, 'RANSY', 2000,'')

create table prevdslocation
(
plocationId int
 ,    plocationName varchar(20)
  ,   pmmpremium int
  , psspremium int
)

INSERT INTO prevdslocation
VALues (1, 'SANDY', 2000,'')
,(2, 'RANSY', 3000,'')

Then add a column and write following expression in placeholder-
=Fields!mmpremium.Value-join(LookupSet(Fields!locationId.Value,Fields!plocationId.Value,Fields!pmmpremium.Value,"prevdslocation"),",")

Following is the screenshot of the solution -
[![enter image description here][1]][1]

【讨论】:

以上是关于矩阵逐年百分比计算的主要内容,如果未能解决你的问题,请参考以下文章

百分比计算 - SpotFire

计算百分比,包括小计作为 Power BI 中的度量

python中如何计算百分数

s-s-rS 根据矩阵/tablix 中的特定列类别添加百分比列

如何标准化混淆矩阵?

s-s-rS/RDLC 计算表达式的小计