Discussion board where members can learn more about Qlik Sense App Development and Usage.
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.
Hi,
Maybe you can try this:
if(len(text)>0,count(Distinct ID) )
Hope that helps,
Carlos M