Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

strange data error

Hi all,

I have a chart (pivot table) with the following data

Klant

Soort

Bedrag

However, I would like to make calculations with the amount in 'Bedrag', so I am using expressions to calculate the amount.

If I use this expression (

=



if(SOORT='RAMING', Sum(BEDRAG),0)

a lot of clients are disappearing. See picture, based on the same data, one with the formula above, one with the 'SOORT' as a dimension.

What am I doing wrong?error loading image

p.s. i made some data unreadable for privacy reasons.

1 Solution

Accepted Solutions
Not applicable
Author

Hi, try this:

sum({$<SOORT = {'RAMING'}>} BEDRAG)

Regards

View solution in original post

2 Replies
Not applicable
Author

Hi, try this:

sum({$<SOORT = {'RAMING'}>} BEDRAG)

Regards

Not applicable
Author

thank you Ivan, that's it!!