隐藏“组”基于公式在Crystal Reports ..?/

时间:2010-09-09 10:15:51

标签: crystal-reports

我正在做一份报告,显示catogory-sub-category明智的销售报告。

我使用类别和子类别

对标题进行分组

我想要做的是..隐藏子类别(Group-Header) - >如果用户没有指定或选择任何子类别。

..?

2 个答案:

答案 0 :(得分:3)

为此,您需要根据参数的值有条件地抑制组头。要做到这一点:

  1. 从“报告”菜单中选择“部分专家...”选项。
  2. 在Section Exprt对话框中选择子类别Group Header部分。
  3. 单击Suppress(No Drill-Down)选项的公式按钮。
  4. 输入公式IsNull ({?subcategory}),然后点击Save and close
  5. 单击“部分专家”对话框底部的“确定”。

答案 1 :(得分:0)

<html>
  <head>
    <style type="text/css">
 .no-wrapper{ float:left;}
 .no-wrapper  a#triangleUP{height:30px;}
  #triangleDWN {height:30px;}
     a#triangleUP
      {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px;
        border-color: transparent  transparent  #7EC6E0  transparent;
       display:block;
      }
     a#triangleDWN
      {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px;
        border-color: #7EC6E0  transparent  transparent  transparent;
       display:block;
      }
span.center{ text-align:center; display:block;font-size:24px;}
     a#triangleDWN:hover{border-color: #1A87B0  transparent  transparent  transparent;}
     a#triangleUP:hover{border-color: transparent  transparent  #1A87B0  transparent;}
      a{text-decoration:NONE;}
    </style>
  </head>
  <body>
<div class="no-wrapper">
<a id="triangleUP" href="#">&nbsp</a>
      <span class="center">1</span>
  <a id="triangleDWN"  href="#">&nbsp</a>
</div>

  </body>
</html>