Help with contains within if else
Hi,
I have written the following piece of code which checks if/not a list contains a character and performs some steps accordingly.
For some reason, the script doesnt check for "if contains" condition and always executes the else part.I think I have a silly mistake here.
Clear Symbols();
Delete Symbols();
clear globals();
dtNext = Open("C:\temp\output.csv","invisible");
Summarize(dtNext, te
...