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

How to replace join by applymap

How to replace join by applymap ?

load *

FROM

E:\QVD\QVD\VenteFull.qvd

(qvd);

LEFT  JOIN(Vente)

IntervalMatch (datecol, [Code Site], [Code Article])

LOAD DISTINCT DateDebutPermanent, DateFinPermanent, [Code Site], [Code Article]

resident      Permanent

      ;

       LEFT JOIN (Vente)

LOAD *

RESIDENT Permanent;

1 Reply
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Dunno.

How many columns from Permanent are being joined into Vente? Every additional column needs a separate mapping table and applymap call. Are you really sure you want to replace this compact piece of script code? Too many records in table Vente?