Skip to main content
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)

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))