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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
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;

1 Solution

Accepted Solutions
sunny_talwar

May be this

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

View solution in original post

2 Replies
sunny_talwar

May be this

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

satishsure
Contributor
Contributor
Author

Thank you..I have overlooked at variable usage.