Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
helen_pip
Creator III
Creator III

My field fails to reload when placed in a certain position--Why

Hello

I have written my SQL and am referencing my fields in Qlikview i.e.

LOAD

DATE,

FORENAME,

SURNAME

SQL;

Select

Date,

Forname,

Surname

from table1

However the relaod fails when I have forename in a certain place in the LOAD statement.  If I move my forename field around to the top or bottom, then reload runs O.K.

Why would this be?

Kind Regards

Helen

1 Reply
jonathandienst
Partner - Champion III
Partner - Champion III

Hi I dont fully understand your problem, but your query should look something like this:

LOAD

          Date As DATE,

          Forename As FORENAME,

          Surname As SURNAME

;

SQL Select

          Date,

          Forename,

          Surname

From table1

;

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein