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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
silvia_assuncao
Creator
Creator

How to join 2 cross tables

Hi, I have 2 cross tables in my script and I need to join them, but the normal outer join is not working. coud anyone help me with that?

I'm attaching here my qvw and the spreadsheets loaded in the script as well

thanks

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Concatenate the tables instead:

ResultTable:

CrossTable(Month, Value_AOP_LC, 12)

LOAD ...fields... FROM

    

     (ooxml, embedded labels, table is [AOP LC])

     ;

CONCATENATE (ResultTable)

CrossTable(Month, Actual_LC, 14)

LOAD ...fields... FROM

    

     (ooxml, embedded labels, table is [Act LC])

     ;


talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Concatenate the tables instead:

ResultTable:

CrossTable(Month, Value_AOP_LC, 12)

LOAD ...fields... FROM

    

     (ooxml, embedded labels, table is [AOP LC])

     ;

CONCATENATE (ResultTable)

CrossTable(Month, Actual_LC, 14)

LOAD ...fields... FROM

    

     (ooxml, embedded labels, table is [Act LC])

     ;


talk is cheap, supply exceeds demand