Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
sivarajs
Specialist II
Specialist II

Count if Count functionality

Hi,

I have a situation like i need to count then i ahve to use same for condition as well

e.g

count(A)

count(if(count(A)>1,A))

But is not working and i dont want to do it in script

-Sivaraj

1 Solution

Accepted Solutions
Not applicable

Hi Siva,

Did you use this?

count(if(column1>1,A))

Regards,

Amay

View solution in original post

3 Replies
Not applicable

Hi Siva,

Did you use this?

count(if(column1>1,A))

Regards,

Amay

alexandros17
Partner - Champion III
Partner - Champion III

You can do:

if(count(A)>1,count(A),'Not Available')

if you want a value you can set your value instead of  'Not Available'

Hope it helps

sivarajs
Specialist II
Specialist II
Author

Hey Amay i have tried the same and i got it but i dint notice that i have got