Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following line of codes in the load script :-
Set chknbr1 = 'D330836','D329537';
Let chknbr = len($(chknbr1));
Then, I am getting chknbr <NULL>
If I write like the following :-
Set chknbr1 = 'D330836','D329537';
Let chknbr = len('$(chknbr1)');
Then I am getting the following error :-
Script line error:
Let chknbr = len('''D330836'',''D329537''')
Any help would be highly appreciated !! 🙂
Let chknbr = len(chknbr1);
hope this helps
regards
Marco
please don't create multiple threads for the same question:
Qlikview :- Using Len function and getting an error/Null values
thanks
regard
Marco
Set chknbr1 = 'D330836','D329537';
Let chknbr = len(chknbr1);
Not sure what is your expected output but above will give chknbr = 19
hope this helps
regards
Marco