Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewwizard
Master II
Master II

Default selection of dimensions

Hi All,

I want to show dimension columns dynamically by selecting values.

Used the below formula:

=SubStringCount(Concat(Lable, '|'), 'Job')

Requirement is I want show always 3 columns (EmpNo,Name,Sal) without selecting any value from the list box.

These are the values from the list box:

EmpNo

Name

Department

Job

ID

HireDate

Please help me in how to achieve this.

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi,

Please find attached file for solution.

Regards,

Jagan.

View solution in original post

5 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Here is the solution.

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
qlikviewwizard
Master II
Master II
Author

Hi All,

If I want to show EmpNo,Name,Sal, these can be selected in Led Check box. But default it should be selected EmpNo,Name,Sal.


How can I achieve this?

Please help.

jagan
Luminary Alumni
Luminary Alumni

Hi,

Please find attached file for solution.

Regards,

Jagan.

jagan
Luminary Alumni
Luminary Alumni

FYI, i have used below condition

For default columns OR GetSelectedCount(Lable) = 0

For non default columns AND GetSelectedCount(Lable) <> 0

By default it will show the default columns even if not selected in the listbox, if selected then it will show the selected values in the chart.

Hope this helps you.

Regards,

Jagan.

qlikviewwizard
Master II
Master II
Author

Dear Jagan,

Many Thanks for your help.