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: 
Anonymous
Not applicable

Resident Load Issue

    Hello Team,

Please help me with the below Resident Load.

Inventory:

LOAD [Inventory ID],

     Name,

     Description,

     [Unit Price],

     [Quantity in Stock],

     [Inventory Value],

     [Reorder Level],

     [Reorder Time in Days],

     [Quantity in Reorder],

     Discontinued?

FROM

[..\..\Inventory List.xlsx]

(ooxml, embedded labels, table is Sheet1);

[Total Quantity]:

LOAD Inventory,

Sum([Unit Price])*Sum([Quantity in Stock]) as Total Resident Inventory Group by Name;

6 Replies
michael123
Partner - Creator
Partner - Creator

[Total Quantity]:

LOAD Name,

Sum([Unit Price])*Sum([Quantity in Stock]) as Total Resident Inventory Group by Name;

prma7799
Master III
Master III

from where inventory field come from ??

Try like this...

Total Quantity]:

LOAD Name,

Sum([Unit Price])*Sum([Quantity in Stock]) as Total Resident Inventory Group by Name;

avinashelite

The below portion has the issue


[Total Quantity]:

LOAD Inventory,

Sum([Unit Price])*Sum([Quantity in Stock]) as Total Resident Inventory Group by Name;

Group by should be always on the columns which acts a key ...and it should be part of the loading table in you case its different

Anonymous
Not applicable
Author

Thanks for making understand

Anonymous
Not applicable
Author

Thanks verymuch

avinashelite

Don't forget to mark the helpful and correct answers