Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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;
May be this
IF WildMatch('$(vfilename)', '$(vfile2016)') Then
Thank you..I have overlooked at variable usage.