Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am currently loading one of my data tables into Qlikview using the following script -
SDUE:
LOAD * FROM
(
I would like make a change to one of the fields as it is loaded in -
Year,'20'&right(Year,2) as AcademicYearShort,
How do I incorporate this in the LOAD script?
Thanks
Greg
Not very Clear, but I'll try. Just do as below
LOAD *, '20'&right(Year,2) as AcademicYearShort FROM
(
Not very Clear, but I'll try. Just do as below
LOAD *, '20'&right(Year,2) as AcademicYearShort FROM
(
May be like below:
SDUE:
Load *,
'20'&right(Year,2) as AcademicYearShort;
LOAD * FROM
(