Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Manish
Creator
Creator

Ad hoc dimension List box without using Inline table

Hi All

I want give user the flexibility to generate the straight table by selecting the dimension names (Ad hoc report).

Is it possible to get the values of dimension name in a list box without using Inline table??

I don't want to use inline table to get the dimension names in a list box. I tried with valuelist() but no luck.

Many thanks

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You can build a Listbox using ValueList. But I don't know how you would make selections or reference in your chart. 

You could "borrow" the $Field. If you just used $Field, it would list all fields. If you wanted to subset you could do this:

=Aggr(Only({<$Field={'Country', 'FullName', 'Year'}>}$Field), $Field) 

-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com

View solution in original post

4 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You can build a Listbox using ValueList. But I don't know how you would make selections or reference in your chart. 

You could "borrow" the $Field. If you just used $Field, it would list all fields. If you wanted to subset you could do this:

=Aggr(Only({<$Field={'Country', 'FullName', 'Year'}>}$Field), $Field) 

-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com

Manish
Creator
Creator
Author

Hi Rob 

Many thanks for your reply.

Actually , I want to have a ad hoc dimension list box without using Inline table  as it is  hampering my application performance. 

So, I was wondering by any chance is it possible to achieve the same functionality ( i.e. Users can select /add the dimension in straight table as per their wish) without using inline table to create a dimension names list box. 

 

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

I believe I gave a solution that does not require an inline table. $Field is a builtin field, so you don't have to load anything. 

-Rob

Manish
Creator
Creator
Author

Sorry Rob .. Somehow , I misread your earlier post. 

Thanks for your help.