Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Ignore dimension in set analysis | Qlik Sense

Hi,

I am wondering what type of syntax I would use if I want return values outside of the dimension. E.g. for the following source data...

DaySales
110
211
312
Total33

...if I wanted to show a table with the relative sales as a percentage each day, so as to return the following.

DaySales (%age)
130.3%  (10/sum of total sales, i.e. 33)
233.33%
336.4%
Total33

I am fairly familiar with using the set analysis to ignore selections (filters) but I haven't been able to figure out how to (or if it's possible to) do the same with regards Dimension.

1 Solution

Accepted Solutions
devarasu07
Master II
Master II

Try like below,

Create new calculated measure like below

sum(Sales)/sum(Total Sales)

3.png

Hope this helps

View solution in original post

4 Replies
devarasu07
Master II
Master II

Try like below,

Create new calculated measure like below

sum(Sales)/sum(Total Sales)

3.png

Hope this helps

sunny_talwar

This:

Sum(Sales)/Sum(TOTAL Sales)

Not applicable
Author

Thanks!

Not applicable
Author

Thanks!