Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Applicable88
Creator III
Creator III

Meaning of '&' in a wildmatch

Hello,

I would like know, when the wildmatch function looks like this what is does with the search:

IF(WildMatch([Ordernumber]&[Materialnumber],'6*MMFF*','3KKLL*'), 1,0) AS [Packaging]

Someone wrote like this in Load Editor. I only know to wildmatch ONE filed. What does that & do with the whole search?

Thank you very much.

Best. 

1 Solution

Accepted Solutions
MikeA
Contributor III
Contributor III

As far as I know it just works by combining the two fields then checking against the strings.

So if Ordernumber = 1 and Materialnumber = 22 it'd be "WildMatch(122,'6*MMFF*','3KKLL*')"

Wildmatch is simply a native if this equals that and can be used the same way with combining multiple fields and variables.

View solution in original post

2 Replies
MikeA
Contributor III
Contributor III

As far as I know it just works by combining the two fields then checking against the strings.

So if Ordernumber = 1 and Materialnumber = 22 it'd be "WildMatch(122,'6*MMFF*','3KKLL*')"

Wildmatch is simply a native if this equals that and can be used the same way with combining multiple fields and variables.

Applicable88
Creator III
Creator III
Author

Thanks @MikeA !