0
A
回答
0
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]
相关问题
- 1. 在矩阵中计算百分比SSRS
- 2. SSRS单排矩阵百分比计算
- 3. 如何计算numpy数组/矩阵的稀疏度百分比?
- 4. 计算百分比
- 5. 计算百分比
- 6. 计算百分比
- 7. 计算百分比
- 8. 计算百分比
- 9. 计算百分比
- 10. 计算百分比总计
- 11. 计算上一年和当年之间的增长百分比
- 12. 百分比计算与行
- 13. Tableau百分比计算
- 14. SSRS - 计算百分比
- 15. Python百分比计算器
- 16. 计算百分比错误
- 17. TSQL计算百分比
- 18. 用PHP计算百分比
- 19. 计算进度百分比
- 20. 计算百分比SQLite中
- 21. 计算百分比的
- 22. SQL百分比计算
- 23. 计算月度百分比
- 24. SAP HANA计算百分比
- 25. 计算百分比在列
- 26. 计算时间百分比
- 27. 百分比计算在PHP
- 28. VBA计算百分比
- 29. MySQL计算百分比
- 30. C计算百分比#
是否有可能在SSRS这样做呢? – Papil