Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
xyz2
Contributor III
Contributor III

Field not found

Hi,

I am trying to load my csv file via data editor in Qlik.

I have an table with two columns "Team" and "Value" for that i did:

 

[MyTable]:

LOAD
    Team as [Team],
    Value as [Value]
    FROM [lib://x/x\x\x\myTable.csv]
(txt, codepage is 28591, embedded labels, delimiter is ';', no quotes);

 

Qlik loads Value, but for Team i get an error "Field 'Team' not found". There is no further information, why it can't be found.

I already checked the column names, but it still doesn't load Team.

Does anyone have an idea how i can solve this problem?

Labels (4)
1 Solution

Accepted Solutions
R_Mendoza
Contributor III
Contributor III

Hello @xyz2,

you problem is here.

delimiter is ';'

Change it to ' , ' . maybe in the csv it is separated by ' , '.

CSV:

R_Mendoza_0-1673432241510.png

[MyTable]:
LOAD
Team,
Value
FROM [lib://...../Test.csv]
(txt, codepage is 28591, embedded labels, delimiter is ',', msq);

R_Mendoza_1-1673432364892.png

 

 Best regards,

Renzo

 

View solution in original post

2 Replies
R_Mendoza
Contributor III
Contributor III

Hello @xyz2,

you problem is here.

delimiter is ';'

Change it to ' , ' . maybe in the csv it is separated by ' , '.

CSV:

R_Mendoza_0-1673432241510.png

[MyTable]:
LOAD
Team,
Value
FROM [lib://...../Test.csv]
(txt, codepage is 28591, embedded labels, delimiter is ',', msq);

R_Mendoza_1-1673432364892.png

 

 Best regards,

Renzo

 

xyz2
Contributor III
Contributor III
Author

That was pretty much what i needed. Thank you!