Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need a blank area before making selections for the chart


Hello,

I want to make a chart out of the required selections only. But I'm getting a default chart even before the making a selection. How should I avoid this and get the chart only after making all the selections?

Thanks and Regards,

Arvind

6 Replies
morganaaron
Specialist
Specialist

Create a conditional show on the chart - on the layout tab, use a GetSelectedCount() function, add the field that you want to make selections on into the function and specify only when a certain amount of selections have been made, for example:

GetSelectedCount(Companies) > 0

That will only show the chart once a user makes a selection in the field companies, for example.

Not applicable
Author

I will try that, Thank you Aaron.

Agis-Kalogiannis
Employee
Employee

Hi

You could modify the above function Arvind to refer to more fields

GetSelectedCount(Companies) > 0 AND GetSelectedCount(Country) > 0 AND ...


So the chart will show results only if you select all the necessary fields.


Regards

Agis

Not applicable
Author

Great! Thank you Agis.

Agis-Kalogiannis
Employee
Employee

I am glad I could help.

Could you please mark the answers as Helpful or Correct so as to close the discussion?

I would appreciate it.

Thanks

Agis

Not applicable
Author

Done, thanks again!

Regards,

Arvind