Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
vsabbise
Creator
Creator

Count with Len() function and Greater than operator

 

Hi All,

I am planning to achieve something similar to below. Count distinct ID based on length of text > = 1

count({$<len([text])={">=1"} >} distinct ID)

The expression doesn't yield any result and I am not sure why.

Labels (2)
1 Reply
CarlosAMonroy
Creator III
Creator III

Hi, 

 

Maybe you can try this:

 

if(len(text)>0,count(Distinct ID) )

 

Hope that helps,

Carlos M