Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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});