Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
In my list box i have list of
a
b
c
suppose if user click on c , it has to display the sub view of C
example
if c clicked or selected then
it should show under c as
C1
C2
C3
Hi,
another way would be to just create a second list_box with this subview_field and give it a visibility_condition so that it pops up only when one of the items has been selected in the other listbox (use GetselectedCount() for this)
HTH
Best regards,
DataNibbler
For this you could use a dimension-group in drill-mode from your field and the subfields.
- Marcus
in list box porpertied there is no dimension
Hi,
another way would be to just create a second list_box with this subview_field and give it a visibility_condition so that it pops up only when one of the items has been selected in the other listbox (use GetselectedCount() for this)
HTH
Best regards,
DataNibbler
I would define an expression
if (getselectedcount(field1)=0, field1, subfieldoffield1) // if nothing selected, Show field1 else subfield
// but if more than 1 selected it Shows subfield of both
if (getselectedcount(field1)=1,subfieldoffield1, field1 // if exacty selected Show Sub view, else Show field1
but for unselection you Need e.g. the current selection box
You need to create such dimensions-groups within the document properties in tab "Groups" (you get this dialog, too within the dimension tab from charts within the bottom left) and then you could this dimension group choose like any other field within the field-dropdown.
- Marcus
Hi datanibbler
can u attach ur file for my reference, bcoz i m new to qlikview.
Have a look on this what are dimension groups and how they work: Creating Cycle and Drill Groups
- Marcus