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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
vardhan1305
Contributor II
Contributor II

add a column to an existing table.

i need to add ROP_Days column to Detl table .  Can you please help me out.

IDS:

LOAD ShortID,

     Month,

     Chr,

     PrimMfr,

     CommCode,

     AWC,

     Days,

     Date,

    ROP_Days,

     ROP_Date,

   Code

    

FROM ....

Detl:

LOAD

     Description,

      ShortID,

     Branch,

     Transaction,

     Type,

     Line,

     Supplier,

   From ...

3 Replies
vishsaggi
Champion III
Champion III

‌your IDS table and detl  table is joined based on ShortID so you can use your RoP_Days anyways.

qlikviewwizard
Master II
Master II

Hi,

Use INNER JOIN Or LEFT JOIN as per your requirement.

IDS:

LOAD ShortID,

    Month,

    Chr,

    PrimMfr,

    CommCode,

    AWC,

    Days,

    Date,

    ROP_Days,

    ROP_Date,

  Code

  

FROM Table_A;

INNER (IDS)

Detl:

LOAD

    Description,

      ShortID,

    Branch,

    Transaction,

    Type,

    Line,

    Supplier,

  From  Table_B;

MarcoWedel

Why do you need to add ROP_Days column to Detl table?