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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Only SUM from one sheet (Excel)

Hello,

I have to sheets in excel. I have a ID in both of them. In the first sheet i have some data connected to it and in the second sheet i have description of what the ID means.

I want to make a chart showing the SUM of all ID. But i only want to SUM the ID from sheet 1. Because now when i go to SUM(ID) it will also include the one in sheet 2. Which is false, since they are only there so i can get a definition of the ID.

Hope you understand.

Regards,

Erik

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

you should an additional Expression from sheet 1

load

id

id as Sheet1id

..

from excel

then you can use sum(Sheet1id) - do you want sum or Count?

there is no other way as QV does not know what ID you want

View solution in original post

2 Replies
Anonymous
Not applicable
Author

you should an additional Expression from sheet 1

load

id

id as Sheet1id

..

from excel

then you can use sum(Sheet1id) - do you want sum or Count?

there is no other way as QV does not know what ID you want

Not applicable
Author

OK nice, i tried to go with..

load

id as sheet1id

But that did not work..

But your solution

load

id

id as sheet1id

did work perfectly.

thank you!!