Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
segerchr
Contributor III
Contributor III

Table/Data Organisation / merge sum field to table

Hey, maybe you techs could help me by coding some sheets.

My goal is to have the pausedMinutes from table 1 in table 2. It could be that there is more than one actionID Pause, so i have to sum the pause minutes in table 1. After that, we can save it in table 2. 

I don't know how to do this. Maybe someone could help. 

Thanks 

1 Solution

Accepted Solutions
timpoismans
Specialist
Specialist

Table2:
LOAD
    TicketNummer,
    ID1
FROM [lib://Qlik Community/2.xlsx]
(ooxml, embedded labels, table is Sheet1);


Left Join (Table2)
LOAD
    TicketNummer,
    Sum(Pause)
FROM [lib://Qlik Community/1.xlsx]
(ooxml, embedded labels, table is Sheet1)
Group By TicketNummer;

 

Check this out if you will and see if it works as you intended.

 

Regards,

Tim P. 

View solution in original post

2 Replies
timpoismans
Specialist
Specialist

Table2:
LOAD
    TicketNummer,
    ID1
FROM [lib://Qlik Community/2.xlsx]
(ooxml, embedded labels, table is Sheet1);


Left Join (Table2)
LOAD
    TicketNummer,
    Sum(Pause)
FROM [lib://Qlik Community/1.xlsx]
(ooxml, embedded labels, table is Sheet1)
Group By TicketNummer;

 

Check this out if you will and see if it works as you intended.

 

Regards,

Tim P. 

segerchr
Contributor III
Contributor III
Author

Thanks, that helps.