我正在做一份报告,显示catogory-sub-category明智的销售报告。
我使用类别和子类别
对标题进行分组我想要做的是..隐藏子类别(Group-Header) - >如果用户没有指定或选择任何子类别。
..?
答案 0 :(得分:3)
为此,您需要根据参数的值有条件地抑制组头。要做到这一点:
IsNull ({?subcategory})
,然后点击Save and close
。答案 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="#"> </a>
<span class="center">1</span>
<a id="triangleDWN" href="#"> </a>
</div>
</body>
</html>