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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Using Conditional in the expression

I am trying to select and sum those who have 0.6 ( 60 %) or less, but the values shown always appear for everybody, what am I doiung wrong?

Conditional:

if(Belåningsgrad <= 0.6,0)

Definition:

sum(tot_engasjem)

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

Try this:

Sum (if (Belåningsgrad <= 0.6, tot_engasjem))

View solution in original post

1 Reply
Not applicable
Author

Try this:

Sum (if (Belåningsgrad <= 0.6, tot_engasjem))