Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ivandrago
Creator II
Creator II

Help with formula

Hi,

I have the following formula:

(([Resolved]-[Exceptions])/[Resolved])

how do I change this so that it only shows where the following field IsServ = 1

Thanks



1 Solution

Accepted Solutions
Not applicable

=if(IsServ=1,(Resolved-Exceptions)/Resolved))

And this one?

What is the exception you get?





View solution in original post

4 Replies
Not applicable

if(IsServ=1,([Resolved]-[Exceptions])/[Resolved]))

ivandrago
Creator II
Creator II
Author

No not working

lucas4bi
Partner - Creator
Partner - Creator

Are these fields all in the same table?

If so try with sum(if(isServ=1,( (([Resolved]-[Exceptions])/[Resolved])))



Not applicable

=if(IsServ=1,(Resolved-Exceptions)/Resolved))

And this one?

What is the exception you get?