Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
stephenedberkg
Creator III
Creator III

Text box pop up

i have seen some of the demo app in qlikview community.

if i select the sheet  the text box pop up is coming  like select any filters  but at that same time i  can't select the other fields..then

i can select only the list box if i selected that list box the pop up text box is hiding and the other fields are appear

How to create this?

i attach the sample snap shot and link

QlikView

text box pop up.png

7 Replies
krishna20
Specialist II
Specialist II

Hi,

As per my knowledge this is Ad-Hoc report. If you select values in list box then chart's or tables will appear.

Hope this helps.

pokassov
Specialist
Specialist

Hi!

use GetSelectedCount(your_field) and GetSelectedCount().

So you can combine these conditions.

sunilkumarqv
Specialist II
Specialist II

In General Calculation condition

=If(GetSelectedCount(WindDirectionCategory)>0,1,0)

And use error message for to notice

stephenedberkg
Creator III
Creator III
Author

pokassov


could you explain brief?

stephenedberkg
Creator III
Creator III
Author

this is okay but how can i hide the background charts .i mean read only

QlikView

just see the above link sunilkumarqv

gautik92
Specialist III
Specialist III

=if((GetSelectedCount(Dimensions)=0),'Select minimum one Dimension to create your report')

create a text box whic hides the whole sheet and write this formula and if they select any field hide the text box

in text box layout conditional

=if(GetSelectedCount(Dimensions)>0,vHide=0)

pokassov
Specialist
Specialist

Any object in qlik has feature Show (Always or Conditional) on  Layout (click right mouse on object and choose Properties).

You can put there you condition.

=if (GetSelectedCount(your_field)>0,1,0)