Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
khanashique
Creator II
Creator II

How to Add a Row in an Existing Table

Hi Experts,

Below is the table which shows data after mapping 2 different data table. I need to add a row in the table below by including 3rd data table.

   Existing Table, Description is Dimension and rest Measures.

DescriptionYear 2016Year 2017Year 2018
Sales1,427,069952,298926,012
Materials Cost1,121,564695,966584,383
Operating Expenses102,20064,66863,634
Other Expenses42,78614,48413,339
Financial Charges71,77662,79753,674
Depreciation172,699168,968145,631

Red Highlighted Row Need to be added:  

DescriptionYear 2016Year 2017Year 2018
Sales1,427,069952,298926,012
Materials Cost1,121,564695,966584,383
Operating Expenses102,20064,66863,634
Other Expenses42,78614,48413,339
Financial Charges71,77662,79753,674
Depreciation172,699168,968145,631
Volume1427952926

Thanks,

MAK.

1 Reply
PabloTrevisan
Partner - Creator II
Partner - Creator II

Hi Ashik,

you can add a new table in the model and concatenate

script:

IncludeData:

Load * INLINE [

Description, [Year 2016], [Year 2017], [Year 2018]

Volume, 1427, 952, 926

];

concatenate

LOAD *

from your table;