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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
BPetosa
Contributor II
Contributor II

Dividing Fields in Set Analysis

Hello Everyone,

I am trying to only grab ID's where the quotient of 2 associated fields is less than 25%. I am trying this, but can't seem to get it to work.

count({<field1 / field2 = {"<.245"}>}ID)

Any help would be much appreciated.

Thanks,

Ben

Labels (1)
1 Solution

Accepted Solutions
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try this:

count(if(field1 / field2 <0.245,ID))

View solution in original post

1 Reply
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try this:

count(if(field1 / field2 <0.245,ID))