Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Filtering data from a List box into Chart

Hi

I have a Status selection Red, Green, Amber and wondered how I add this into filtering data when I already have a filter by status.

Example attached

Thanks

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Do this in your last table in the script and use RAG Status as your status selections. Previously you are using a field not linked to your actual data sheet.

RAGStatusFilter:

LOAD

RAGFilter AS [RAG Status]

INLINE [

RAGFilter

'Green'

'Amber'

'Red'

];

View solution in original post

1 Reply
vishsaggi
Champion III
Champion III

Do this in your last table in the script and use RAG Status as your status selections. Previously you are using a field not linked to your actual data sheet.

RAGStatusFilter:

LOAD

RAGFilter AS [RAG Status]

INLINE [

RAGFilter

'Green'

'Amber'

'Red'

];