Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Ernests
Partner - Creator
Partner - Creator

Measure multiplied by dimension does not show total value

Hi Experts,

I believe there is a simple solution for this problem but can't solve it now.

I have a pivot table with multiple dimensions and measures. One of the columns (values part in pivot table) is made price (which is dimension) multiplied by sum of visits (which is measure). Results are correct but if I try to get totals row, it does not have a value. I tried to use sum(aggr... but did not get correct results.

Measure now look like this: [dimension1] * sum({< type = {1} >} [visit.count])

Any ideas?

Labels (6)
1 Solution

Accepted Solutions
Muthukumar_77
Contributor III
Contributor III

Try Below expression,

 sum({< type = {1} >} [dimension1] * [visit.count])

Thanks Regards,
Muthukumar P
Qlik Developer

View solution in original post

4 Replies
Muthukumar_77
Contributor III
Contributor III

Hi,

 

Any sample data?

 

Thanks Regards,
Muthukumar P
Qlik Developer
Ernests
Partner - Creator
Partner - Creator
Author

Thanks for your reply!

Hope this helps:

Ernests_0-1731322590061.png

sum(skaits) multiplied by dimension column. For example 36 x 84 = 3024. But totals row is not calculated.

 

Muthukumar_77
Contributor III
Contributor III

Try Below expression,

 sum({< type = {1} >} [dimension1] * [visit.count])

Thanks Regards,
Muthukumar P
Qlik Developer
Ernests
Partner - Creator
Partner - Creator
Author

Yes, simple as that worked. I thought I already tried this. Thanks!