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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
xyz1
Creator III
Creator III

?

.

Labels (1)
5 Replies
tresB
Champion III
Champion III

Are you trying to get the output in front-end (may be in a text box)? Is your comparison case sensitive?

xyz1
Creator III
Creator III
Author

.

tresB
Champion III
Champion III

Try expression like:

For case INsensitive match (in text box)

='All match : ' & If(not Max(upper(Name)=upper(Name2)), 'NO', 'YES')

Case sensitive

='All match : ' & If(not Max(Name=Name2), 'NO', 'YES')


To get the list of names:


='Not Matched Name : ' & Concat( Distinct If(not Name=Name2,  Name), ',')

='Not Matched Name2 : ' & Concat( Distinct If(not Name=Name2,  Name2), ',')


If you need case insensitive result, just use upper()/lower() like shown above.



xyz1
Creator III
Creator III
Author

.

Anonymous
Not applicable

Is there any relation between two tables that you are loading?? If not, i think we should create one and then replace

Name and Name2 with Assetname and Item .