Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display values which is not selected with multiple Inputs

Hello Everybody,
I am trying to get / display values which are not selected using multiple inputs (using inputbox).
Eg.
I have a table with product ID, sales and date. The user wants to see total sales of some specific product for particular period. I created the input box to paste multiple Products at a time (usually they select more that 1000). Some products from the inputbox will not be selected as they are not possible to select. So I want to display the products which are not selected in the listbox.
Now I am displaying only the count of selected products using GetPossibleCount(Product_ID)
Any help with this would be appreciated.
2 Replies
swuehl
MVP
MVP

You could try something like this in a text box:

=concat({<Product_ID = e(Product_ID) >} Product_ID,', ')

CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     You can Subtract it like

     =Count({1} Distinct Product_ID) - GetPossibleCount(Product_ID)

or

    =Count({<Product_ID=E(Product_ID)>} Distinct Product_ID)

Celambarasan