Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
christianf85
Contributor
Contributor

Example for LOAD ... EXTENSION without scripteval

Hello,

i am new in QLIK with a basic Python background. I already managed to get some SSE functions running in QLIK Sense Desktop but I am still struggling with the LOAD ... EXTENSION syntax in the data editor.

The ColumnOperations Example from GitHub seems promising but somehow the .qfv file cannot be opened due to file format error(?!). 

Basically I am looking for a simple example to do something like this in the data editor:

Input Table1 with specific format ---> use SSE function (LOAD ... EXTENSION) to run some python functions (data processing, algorithms etc.) --> store results in Table2 with a specific format (multiple rows/columns)

Maybe somebody can help here.

 

Thanks
Christian

 

Labels (1)
1 Reply
ZYJ
Contributor II
Contributor II

Hi, 

 

have you tried with other examples from the repository. 

for example, this is the script in data load editor from the helloworld example

ThreeColumnEcho:
LOAD Field1 AS HelloWorldData, Field2 AS Echo2, Field3 AS Echo3 EXTENSION SSEPython.EchoTable_3(HelloWorldTable{HelloWorldData, HelloWorldData, HelloWorldData});