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

Sum Including all variables

I have 3 selector.

Year

Month

Client

In my QV the user can select values for all my graphics, but in one I need to calculate with all values of client selector and ignore the selection of if.

Thanks

1 Reply
erichshiino
Partner - Master
Partner - Master

If you want to ignore all selection to sum field AMOUNT for example, you can just write:
sum ({1} AMOUNT)

You can also ignore selection in one or more fields:

sum ({<Year = , Month = >}AMOUNT) , this will ignore selection on year and month, but users can still select the client.

Hope it helps,