I have SSRS report with 3 groups in Tablix
-- Group A
----Group B
------Group C
If group C has 0 records then I do not want to show any of Group A, B and C.
I tried to set the visibility property for Group A and Group B:
=IIF(Count(Fields!Field.Value)=0, true ,false)
But it is still showing the Groups A and B.
I Tried InScope
of group C and above condition, but this is still showing the Groups A and B when record count is 0.
Also Group B is toggled by Group A and Group C is toggled by Group B. Not sure if that is an issue
Data Table
GroupA------------------- GroupB ------------------- GroupC ----------------%Detail
School 1 --------------- Grade 4 ------------------- student1 ------------- 50%
School 1 --------------- Grade 5 ------------------- student2 ----------------70%
School 1 --------------- Grade 4 ------------------- student3 ---------------- 60%
School 2 --------------- Grade 4 ------------------- student4 ----------------70%
School 2 --------------- Grade 5 ------------------- student5 ----------------60%
I have filter on GroupC to return the records has %Detail<=50
In this case I in Group B i want to see only Grade 4 and in Group C student 1.
But if In group B I see Grade 4 (drill downs to student)and Grade5 (which does not drill but i don't want to see grade 5 at all in group B for this filter)
If I add this filter on GroupB I do not see anything not grade 4 and not grade 5