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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
priyarane
Specialist
Specialist

Adhoc report selection

Hi Community,

I have a issue with adhoc report like below/

Dimensions

Dim1

Dim2

Dim3

In straight table for I am using X_Dim for the above

so If I select any one of above dimension then X_Dim should be enable.

Right now I am using enable condition like: SubStringCount(Concat(%Dimension,'|'),'Dim1') .

But I need to make X_Dim for all three so, can some one please help me

- Priya

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try enable condition expressions like:

max(match(%Dimension,'Dim1'))

max(match(%Dimension,'Dim2'))

max(match(%Dimension,'Dim3'))


talk is cheap, supply exceeds demand

View solution in original post

4 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try enable condition expressions like:

max(match(%Dimension,'Dim1'))

max(match(%Dimension,'Dim2'))

max(match(%Dimension,'Dim3'))


talk is cheap, supply exceeds demand
priyarane
Specialist
Specialist
Author

Hi Gysbert,

How we will copy this Condition for Enable conditional. its throwing errors should I use If condition some where, Could you please brief about it.

- Thank you

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

I'm afraid I don't understand what you're trying to explain. Perhaps you can upload a small qlikview document that demonstrates the problem and explains what you want.


talk is cheap, supply exceeds demand
priyarane
Specialist
Specialist
Author

Hi Gysbert,

Got it,

I tried like this max(match(%Dimension,'Dim1','Dim2'....))

Thank you