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: 
Pablo_Aimar
Partner - Contributor II
Partner - Contributor II

Data Load Error

Hi,

 

Please can anyone help me understand why my script won't load.  The error message Qlik Sense gives me points to a filed as the problem, but I can see this field in the frontend dashboard, so it is clearly loading.  What is wrong with my syntax?  I've attached a screenshot to better illustrate this script.

 

CONCATENATE(CostValue)
LOAD
Text("Placement ID") as "Placement ID",
// "Date",
Date(Date#("Date",'YYYY-MM-DD'),'DD/MM/YYYY') as Date,
(Sum(Impressions)/1000) * 9.46 as [Cost-Per-Day]
FROM [lib://Output Files/Openreach/GCM/*.qvd] (qvd)
WHERE Match ([Site (DCM)],'crimtan.com','Programmatic Ads - Crimtan Agency') AND MATCH(NotesOne,'Phase1&2')
GROUP BY Date, "Placement ID";

Labels (2)
1 Solution

Accepted Solutions
JuanGerardo
Partner - Specialist
Partner - Specialist

Hi,

as you are loading all qvds in that folder (using *.qvd), they are processed one by one, but at least one of them doesn't have the field NotesOne.

This is your problem.

JG

View solution in original post

2 Replies
JuanGerardo
Partner - Specialist
Partner - Specialist

Hi,

as you are loading all qvds in that folder (using *.qvd), they are processed one by one, but at least one of them doesn't have the field NotesOne.

This is your problem.

JG

Pablo_Aimar
Partner - Contributor II
Partner - Contributor II
Author

thank-you 🙂