SSRS:如何根据多值参数分页后在文本框中显示多值参数的每个值

发布于 2025-01-09 12:20:13 字数 922 浏览 1 评论 0原文

此查询基于此链接 https://www 中的示例.sqlshack.com/using-multi-value-parameters-in-ssrs/

  1. 让我们假设我在多值参数中有多个职位:
  • 会计师
  • 客户经理 (...)
  • 首席执行官

在此处输入图像描述

  1. 现在,如果我一次选择多个职位,它们的标签将显示在标题顶部,如下所示:

在此处输入图像描述

我的问题是:如果我应用分页符基于这些多值参数,如何显示每个分页符的参数值,而不是通过 Join 函数组合所有参数值

  • 第 1 页应为“员工详细信息报告: 会计
  • ” 第 2 页应为“员工详细信息报告: 客户经理 ” (...)
  • 第 N 页应为“员工详细信息报告首席执行官

This query is Based on the example in this Link https://www.sqlshack.com/using-multi-value-parameters-in-ssrs/.

  1. Let us assume that I have several Job Titles in the multi-value Parameter:
  • Accountant
  • Accounts Manager
    (...)
  • Chief Executive Officer

enter image description here

  1. Now, if I select several job titles at a time, their Label will appear on top of the title as follows:

enter image description here

My question is: if I apply Page Break based on those multi-value parameters, how do I display Parameter Value per Page Break instead of all of them combined by the Join function?

  • Page 1 should be "Employee Detail report: Accountant"
  • Page 2 should be "Employee Detail report: Accounts Manager"
    (...)
  • Page N should be "Employee Detail report: Chief Executive Officer"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤舞 2025-01-16 12:20:13

您需要在数据集中返回 JobTitle 描述,然后您可以在报告的表格中添加一个按 JobTtitle 分组的组(如果您还没有)。

现在向您的组添加一个标题行,然后您可以将 JobTitle 字段放入文本框中。

You'll need to have the JobTitle descriptions returned in your dataset, then you can add a group in your report's table which groups by JobTtitle (if you don't already have one).

Now add a header row to your group and in there you can drop your JobTitle field into the text box.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文