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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

straight table total %

i cant seem to get the total to display correctly or at all.

The total % should = (capacity-demand)/demand

As you can see its displaying blank.

How can i get it to display the total expressed as a % ?error loading image

3 Replies
Not applicable
Author

Try:


sum(Capacity-Demand)/Demand
//may even need something like this
(sum(Capacity-Demand))/Demand
//or play around with num
sum(Capacity-Demand)/num(Demand)


One of those combinations should work. QV needs more direction.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You'll need to specifiy an aggregation for all the data involved. Like Jacob said, but for the divisor as well.

sum(Capacity-Demand) / sum(Demand)

-Rob

Not applicable
Author

dear all, i still cant get the correct % for all columns including the total column.

see picture below which shows the results from the different expressions you suggested

are there any other ideas for expression/settings that will enable the table to display correct % for all months + the total column?