
Contributor
2021-10-21
07:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
QLIK Sense (sum with the condition)
I need to show the sum of the columns of only those values when the 3 columns combined are unique. Right now my expression looks like this: Num(Sum([myColumn]) , '# ##0,00') I need to add a condition similar to (where Dictinct col1, col2, col3). Can you tell me how to do it?
I tried to write like this: Num(Sum(distinct {[col1] + [col2] + [col3]} [mycolumn]), '# ##0.00') , but it didn't help
id| col1| col2| col3| mycolumn| \n
1| 0001| 810| yes| 10.00| \n
2| 0001| 810| yes| 10.00|
3| 0001| 840| no| 25.11|
4| 0001| 840| yes| |25.11|
5| 0001| 392| yes| 15.01|
6| 0001| 756| yes| 15.01|
total 90,24
col1, col2, and col3 in records with id1 and id2 are equal, so only one of them goes into the sum. In records id3 and id4 col3 are different, so two columns add up. In records id5 and id6 the col2 column is different, so they add up too. Total: 10.00 + 25.11 + 25.11 + 15.01 + 15.01
671 Views
1 Reply

Specialist II
2021-10-22
09:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I suggest to not create too complex set analysis, it'll make you analysis slower.
Create a new field during load script like
Load *
If(Col1<>Col2 and Col2<>Col3 and Col1<>Col3,1,0) as OnlyDistinct
From....
Then use this field in your expression:
Sum((Col+Col2+Col3)*OnlyDistinct)
or
Sum({<OnlyDistinct={1}>}Col+Col2+Col3)
Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.
If a post helps to resolve your issue, please accept it as a Solution.
653 Views
