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: 
satishsure
Contributor
Contributor

WildMatch

I have another issue like.I have file name contains "Trans Sales 2016.xlsx". file name has spaces

I need to verify the file name has 2016 or  not not.

let vfile2016           =   'Trans Sales 2016.xlsx';

Let vfilename =  'Trans Sales 2016.xlsx';

if( WildMatch(($(vfilename)), $(vfile2016)) >= 1 Then

Concatenate (Data1);

end if

exit SCRIPT;

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be this

IF WildMatch('$(vfilename)', '$(vfile2016)') Then

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

May be this

IF WildMatch('$(vfilename)', '$(vfile2016)') Then

satishsure
Contributor
Contributor
Author

Thank you..I have overlooked at variable usage.