Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
anushahegde
Contributor III
Contributor III

Include in set analysis

Hi all,

Concat(Distinct{<Include = {'Y'}>}chr(39) & [Country Id] & chr(39),',')

Include is not a field name.

I wanted to understand what does Include=Y do in the set analysis? Can anyone help me here?

Thanks in advance,

Anusha

10 Replies
rittermd
Master
Master

The only other use of Include that I am aware of is storing code on the server in a file and then using the Include statement in your script to pull it in.

I tried your code with and without the Include and got the same results either way.  So it appears that since Include is not a field that it is ignoring it and doing nothing with it.

This code

Concat(Distinct chr(39) & BillToNum & chr(39),',')

gave me the same results as

Concat(Distinct {<Include={'Y'}>} chr(39) & BillToNum & chr(39),',')