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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count number of values/strings and divide them

Hello

I'm trying to create a Barchart where I want to count the number of values/strings in two fields and then divide one with the other. Example, Bikes per person.

If i have one field containing the bikes and every row is a description of a bike owned by a person, every person is the id number of a person.

I've tried the count(Bikes)/Count(Persons), but this just gives me "1" on the barchart as a value, and I know this is not the correct value. Both fields are primary keys if it matters.

Any suggestions on how I can make this work?

Thanks in advance!

1 Solution

Accepted Solutions
Not applicable
Author

Use distinct.

count(distinct Bikes)/Count( distinct Persons)

Not sure about syntax, look it up.

View solution in original post

1 Reply
Not applicable
Author

Use distinct.

count(distinct Bikes)/Count( distinct Persons)

Not sure about syntax, look it up.