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

Filed missing after intermatch

when I execute the following script I didn't find the field oc after intermatch in the table TempVente

How to resolve it ?

OCtemp:

LOAD [OC] ,DEBUT

      ,FIN ;

SQL SELECT distinct  [OC]

      ,[DATE DEBUT] AS [DEBUT]

      ,[DATE FIN] AS [FIN]

  

FROM [QlikDataWarehouse].[dbo].[OC]

WHERE [Code Article] IS NOT NULL ;

TempVente:

LOAD PrixUnitaireArticle,

     PrixArticleHT,

datecol,

     PrixRevientTTC

FROM

E:\QVD TEST OC\Vente.qvd

(qvd);

LEFT  JOIN(TempVente)

IntervalMatch (datecol)

LOAD DISTINCT DEBUT

      ,FIN

resident      OCtemp

      ;

drop table OCtemp;

1 Solution

Accepted Solutions
marcus_malinow
Partner - Specialist III
Partner - Specialist III

You've already posted several variations of this question, and have been given the answer already.

Before DROP TABLE OCTemp

LEFT JOIN (TempVente)

LOAD *

RESIDENT OCTemp;

View solution in original post

5 Replies
MK_QSL
MVP
MVP

You need to provide some more information? May be a sample data file (excel file) or a sample QVW is good to work on your question.

sujeetsingh
Master III
Master III

May be some nulls in source.

miguelbraga
Partner - Specialist III
Partner - Specialist III

Hi mate,

I'm sorry but I didn't understood your question. Can you please elaborate better? By the way, OC is a table not a field. I don't know where you have your desired field.

Regards,

MB

Anonymous
Not applicable
Author

when I remove drop table OCtemp; I get the best results

marcus_malinow
Partner - Specialist III
Partner - Specialist III

You've already posted several variations of this question, and have been given the answer already.

Before DROP TABLE OCTemp

LEFT JOIN (TempVente)

LOAD *

RESIDENT OCTemp;