水晶报表扩展详细信息选项

发布于 2024-12-11 16:37:28 字数 264 浏览 0 评论 0原文

我正在制作水晶报告,我需要知道如何为以下问题创建布局:

我有一份如下所示的报告

EmpNo    EmpName    Salary
101      Mark       $10000
102      Jain        $8000

我的客户要求提供扩展工资的选项,该选项将显示工资金额的详细视图。比如,每个工资金额都会有基本、DA、激励、税收等。

我们有什么选择可以实现这个要求吗?

谢谢

I am working on crystal reports and I need to know how to create the layout for the below issue:

I have a report as shown below

EmpNo    EmpName    Salary
101      Mark       $10000
102      Jain        $8000

My client is requesting an option to expand the salary which will show the detailed view of salary amount. something like, each salary amount will have Basic, DA, incentive, Tax, etc.

Is there any option we have to achieve this request?

Thanks

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

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

发布评论

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

评论(1

送舟行 2024-12-18 16:37:28
  • 创建一个布尔参数来隐藏/显示名为“隐藏详细信息”的详细信息部分。
  • 按 EmpNo 的报告进行分组
  • 为“详细信息”部分创建一个抑制公式,内容如下:

    //如果参数值为true则隐藏该部分
    {?隐藏详细信息}

  • Create a boolean parameter to hide/show Details section named 'Hide Details'.
  • Group by the report by EmpNo
  • Create a suppression formula for the the Details section that reads:

    //suppress the section if the parameter's value is true
    {?Hide Details}

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