Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
xyz1
Creator III
Creator III

?

.

5 Replies
tresesco
MVP
MVP

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

.

tresesco
MVP
MVP

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 .