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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
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