Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I want to ask a question - how to test small pieces of code the fastest way. I was learning python via jupyter notebooks, and for example, you just put in the function like Today() and it instantly generates the output. Is there any API to test small amounts of code for Qlik? For example:
SET abc = 10,1
FLOOR(abc)
Output: ????
Example from iPython Notebook:
hello
using trace ...
SET abc = 10,1;
let r=FLOOR(abc);
trace $(r);
exit script;
hello
using trace ...
SET abc = 10,1;
let r=FLOOR(abc);
trace $(r);
exit script;