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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
l_denivelle
Creator
Creator

Repeat amount for specific dimension

Hi

I have 2 amounts to calculate that I have to repeat per customer who belongs to Group.

Example :

CustomerGroupSalary massAmount 1 (sum per Customer)Amount 1 (per Group)Amount 2 (salary mass - Amount 1)
1A10 000€1 000€700€9 000€
1B10 000€1 000€

300€

9 000€
2C25 000€12 000€2 000€13 000€
2D25 000€12 000€8 000€13 000€
2E25 000€12 000€2 000€13 000€

I tried with AGGR() or TOTAL function and I didn't manage to get the results of Amount 1 (sum per Customer) and Amount 2 (salary mass - Amount 1)

I will be grateful if you have any solutions for this case.

Thank you !

1 Solution

Accepted Solutions
sunny_talwar

Try TOTAL qualifer with Customer field name -> TOTAL <Customer>

1) Sum(TOTAL <Customer> [Amount 1])

2) Sum([Amount 1])

3) Only([Salary mass]) - Sum(TOTAL <Customer> [Amount 1])

View solution in original post

2 Replies
sunny_talwar

Try TOTAL qualifer with Customer field name -> TOTAL <Customer>

1) Sum(TOTAL <Customer> [Amount 1])

2) Sum([Amount 1])

3) Only([Salary mass]) - Sum(TOTAL <Customer> [Amount 1])

l_denivelle
Creator
Creator
Author

Cool ! it works. I didn't know I could use TOTAL function like this.

Thank you