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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Data Loading into Qlikview

Hi

Find attached current table format in our ERP system, and required qlikview format for some of our reports, please suggest a best way to design

Regards

2 Replies
prasad
Contributor III
Contributor III

hi,

i think you can create a master table to link product code and level seperately and link the table. Remove the Level column in the excel sheet. Maybe this helps. "Thanks!

Prasad

Not applicable
Author

without knowing your info or business, based on your example, I would go for something like this:


Products:
LOAD ID as Product_Id, PRODUCT_CODE
FROM [BOM_2D00_REPORT.xlsx] (ooxml, embedded labels, table is Sheet1);
Components:
LOAD ID as Product_Id, autonumber(COMPONENT_CODE) as Component_Id, COMPONENT_CODE
FROM [BOM_2D00_REPORT.xlsx] (ooxml, embedded labels, table is Sheet1);
Usage:
LOAD autonumber(COMPONENT_CODE) as Component_Id, USAGE_QUANTITY, [MAKE OR BUY]
FROM [BOM_2D00_REPORT.xlsx] (ooxml, embedded labels, table is Sheet1);


P.s. There's no criteria in the first format to autogenerate the level column.