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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to test small pieces of code fastest way?

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:

forumquestion.PNG

1 Solution

Accepted Solutions
olivierrobin
Specialist III
Specialist III

hello

using trace ...

SET abc = 10,1;

let r=FLOOR(abc);

trace $(r);

exit script;

View solution in original post

1 Reply
olivierrobin
Specialist III
Specialist III

hello

using trace ...

SET abc = 10,1;

let r=FLOOR(abc);

trace $(r);

exit script;