Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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?