Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
whiteymcaces
Partner - Creator
Partner - Creator

Expression to Show Full Total

I am looking for an expression to show the total value associated with a particular dimension even though the other dimensions in the chart only make up part of the full value.

In my example (attached) I want the Total Value for each [Invoice Number] on every row associated with that [Invoice Number]. There are 2 types of data associated with invoices, however I only want to show 1 type in my chart, but the full value of the Invoice. I have tried to use Aggr function, and Total function, but can't get it to work.

Edit: Need to be able to make selections on the Expenses Table and still show the entire Invoice Balance.

1 Solution

Accepted Solutions
sunny_talwar

May be this

Aggr(NODISTINCT Sum({<[Expense Type], ExpenseID>}Amount), [Invoice Number])

View solution in original post

4 Replies
sunny_talwar

Try this

Aggr(NODISTINCT Sum(Amount), [Invoice Number])
whiteymcaces
Partner - Creator
Partner - Creator
Author

Perfect, thanks.

whiteymcaces
Partner - Creator
Partner - Creator
Author

Need to be able to make selections on the Expenses table and still see the Entire Invoice Total.

sunny_talwar

May be this

Aggr(NODISTINCT Sum({<[Expense Type], ExpenseID>}Amount), [Invoice Number])