Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mahitham
Creator II
Creator II

what does LeftKeepReduce

Hi Experts,

I have the below line in my qliksense application Include file.

Can any one  please explain what does LeftKeepReduce .

CALL LeftKeepReduce ('Table1','Table2');


Thanks in advance.

1 Solution

Accepted Solutions
timpoismans
Specialist
Specialist

CALL LeftKeepReduce ('Table1','Table2');


This statement CALLs a subroutine named LetKeepReduce and Table1 and Table2 are its parameters.

Somewhere in your include file, there should be a

Sub LeftKeepReduce

    ....

End Sub

The code included in the Sub is what's being executed, so take a look at it or post it back here and we can help you further.

View solution in original post

2 Replies
Gysbert_Wassenaar

It seems somebody defined a subroutine in your code that's called LeftKeepReduce. I have no idea what that code is. My guess is that the code would use one table to remove records from the second table using a LEFT KEEP statement.


talk is cheap, supply exceeds demand
timpoismans
Specialist
Specialist

CALL LeftKeepReduce ('Table1','Table2');


This statement CALLs a subroutine named LetKeepReduce and Table1 and Table2 are its parameters.

Somewhere in your include file, there should be a

Sub LeftKeepReduce

    ....

End Sub

The code included in the Sub is what's being executed, so take a look at it or post it back here and we can help you further.